"use client" import React from 'react'; import Link from 'next/link'; // import { useHistory } from 'react-router-dom'; import Svg from './Svg'; function Error() { // const history = useHistory(); const goBack = (e) => { e.preventDefault(); // history.goBack(); }; return ( <>
Sorry!

The page can't be found.

The page you're looking for isn't available. Use the go back button below

{/* goBack(e)} href="#"> Go Back */} Go Back
); } export default Error;