import { FC, PropsWithChildren } from 'react'; import { Link } from 'react-router-dom'; import { SimpleCard } from '../utils/SimpleCard'; type NotFoundProps = PropsWithChildren<{ to?: string }>; export const NotFound: FC = ({ to = '/', children = 'Home' }) => (

Oops! We could not find requested route.

Use your browser's back button to navigate to the page you have previously come from, or just press this button.


{children}
);