Files
my-links/inertia/pages/errors/not_found.tsx
2024-10-07 01:33:59 +02:00

12 lines
197 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>
</>
);
}