interface AlertProps { onClose: () => void; message: string; isWarning: boolean; } function Alert(props: AlertProps): JSX.Element { return (
{props.message} { !props.isWarning && }
) } export default Alert;