const Alert = ({ viuwAlert, titulo, mensaje, setViuwAlert }) => { return ( <> {viuwAlert &&

{titulo}

{mensaje}
} ); }; export default Alert;