Files
catherine-league/client/src/components/notfound.tsx
2020-07-26 13:25:04 +09:00

14 lines
215 B
TypeScript

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