9 lines
120 B
TypeScript
9 lines
120 B
TypeScript
export function NotFound() {
|
|
return (
|
|
<section>
|
|
<h1>404: Not Found</h1>
|
|
<p>It's gone :(</p>
|
|
</section>
|
|
);
|
|
}
|