import React, { FunctionComponent } from 'react'; import Link from '../../app/Link'; type PropTypes = { title: string; }; const NotFound: FunctionComponent = () => (

404 Page Not Found

Sorry, the page you were trying to view does not exist.

Go to Top

); export default NotFound;