import React, { FunctionComponent } from 'react'; import { Box, Container, Link, Paper, Typography } from '@material-ui/core'; const NotFound: FunctionComponent = () => ( 404 Page Not Found Please head to the home. ); export default NotFound;