import React, { FunctionComponent } from 'react'; type ComponentProps = { }; export const NotFound: FunctionComponent = (props): JSX.Element => { return (
404
); };