import Page from 'components/Page'; import React from 'react'; import { useHistory } from 'react-router-dom'; import { Button, Typography } from '@material-ui/core'; const NotFound = () => { const { push } = useHistory(); return ( 404 The page you've tried to access does not exist or has moved
); }; export default NotFound;