import {useNavigate} from 'react-router-dom'; export default () => { const navigate = useNavigate(); const goBack = () => { navigate(-1); }; return ( <>