import * as React from 'react'; import { P } from '../ui/Paragraph'; interface PageNotFoundProps { location: { pathname: 'string' }; } export const PageNotFound: React.VFC = ({ location }) => (

Page not found - the path, {location.pathname}, did not match any React Router routes.

);