mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-09 15:05:35 +00:00
12 lines
197 B
TypeScript
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>
|
|
</>
|
|
);
|
|
}
|