({ children })
| 2 | import { Alert } from 'reactstrap'; |
| 3 | |
| 4 | const ErrorMessage = ({ children }) => ( |
| 5 | <Alert color="danger" fade={false} data-testid="error"> |
| 6 | {children} |
| 7 | </Alert> |
| 8 | ); |
| 9 | |
| 10 | export default ErrorMessage; |
nothing calls this directly
no outgoing calls
no test coverage detected