import React from 'react'; export default function ErrorModal() { const [show, setShow] = React.useState(true); const close = () => { setShow(false); }; return (