not_found.tsx 151 B

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