Files
my-links/inertia/pages/errors/not_found.tsx
2024-06-02 23:59:57 +02:00

12 lines
217 B
TypeScript

export default function NotFound() {
return (
<>
<div className="container">
<div className="title">Page not found</div>
<span>This page does not exist.</span>
</div>
</>
);
}