import { FunctionalComponent, h } from "preact"; import { Link } from 'preact-router/match'; import * as style from "./style.css"; const Notfound: FunctionalComponent = () => { return (

Error 404

That page doesn't exist.

Back to Home

); }; export default Notfound;