404.tsx 119 B

12345678910111213
  1. type IProps = {
  2. }
  3. export default ({}: IProps) => {
  4. return (
  5. <div>
  6. <h1>Not found</h1>
  7. </div>
  8. );
  9. }