| 2 | import { Code, P } from './UI'; |
| 3 | |
| 4 | interface PageNotFoundProps { |
| 5 | location: { pathname: 'string' }; |
| 6 | } |
| 7 | |
| 8 | export const PageNotFound: React.VFC<PageNotFoundProps> = ({ location }) => ( |
| 9 | <P> |
nothing calls this directly
no outgoing calls
no test coverage detected