8 lines
164 B
TypeScript
8 lines
164 B
TypeScript
export default function NotFound() {
|
|
return (
|
|
<div>
|
|
<h1>Not Found</h1>
|
|
<p>This is the not found page</p>
|
|
</div>
|
|
);
|
|
} |