Files
Picsur/frontend/src/routes/notfound/index.tsx

18 lines
440 B
TypeScript
Raw Normal View History

2022-02-23 11:50:18 +01:00
import { FunctionalComponent, h } from 'preact';
import { Link } from 'preact-router/match';
import style from './style.css';
const Notfound: FunctionalComponent = () => {
return (
<div class={style.notfound}>
<h1>Error 404</h1>
<p>That page doesn&apos;t exist.</p>
<Link href="/">
<h4>Back to Home</h4>
</Link>
</div>
);
};
export default Notfound;