10 lines
144 B
TypeScript
10 lines
144 B
TypeScript
import React from 'react';
|
|
|
|
export function NotFound() {
|
|
return (
|
|
<main>
|
|
<h1>404 Not Found</h1>
|
|
</main>
|
|
)
|
|
}
|