({ variant, children })
| 2 | import { Alert } from 'react-bootstrap' |
| 3 | |
| 4 | function Message({ variant, children }) { |
| 5 | return ( |
| 6 | <Alert variant={variant}> |
| 7 | {children} |
| 8 | </Alert> |
| 9 | ) |
| 10 | } |
| 11 | |
| 12 | export default Message |
nothing calls this directly
no outgoing calls
no test coverage detected