import React from 'react'; type Props = { text: string; } export const Alert: React.FC = ({text}) => { return(

{text}

) }