import React, { ReactElement } from 'react' import styles from './Alert.module.css' export default function Alert({ title, text, state }: { title?: string text: string state: 'error' | 'warning' | 'info' | 'success' }): ReactElement { return (
{title &&

{title}

}

{text}

) }