({className, id, header, children: message, type})
| 10 | * Alert |
| 11 | */ |
| 12 | export default function Alert({className, id, header, children: message, type}) { |
| 13 | return ( |
| 14 | <div id={id} className={`alert alert-${type} fade show ${className || ''}`} role="alert"> |
| 15 | {header && <strong>{`${header} `}</strong>} |
| 16 | {message} |
| 17 | </div> |
nothing calls this directly
no outgoing calls
no test coverage detected