import { Title, SubTitle } from '@automattic/onboarding'; import { translate } from 'i18n-calypso'; import React from 'react'; const NotFound: React.FunctionComponent = () => { return (
{ translate( 'Uh oh. Page not found.' ) } { translate( "Sorry, the page you were looking for doesn't exist or has been moved." ) }
); }; export default NotFound;