import { FC } from 'react'; import { Link } from 'react-router-dom'; import { SimpleCard } from '../utils/SimpleCard'; interface NotFoundProps { to?: string; } 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}
); export default NotFound;