PasswordBox/frontend/src/pages/_404.tsx
2024-10-04 11:50:04 +02:00

9 lines
120 B
TypeScript

export function NotFound() {
return (
<section>
<h1>404: Not Found</h1>
<p>It's gone :(</p>
</section>
);
}