not_found.tsx 113 B

1234567
  1. import React from 'react';
  2. function NotFound() {
  3. return <>Page was not found.</>;
  4. }
  5. export default NotFound;