import React, { FunctionComponent } from "react"; import { Link } from 'react-router-dom'; import style from "./style.module.css"; const NotFound: FunctionComponent = () => { return (

Error 404

That page doesn't exist.

Back to Home

); }; export default NotFound;