14 lines
226 B
TypeScript
14 lines
226 B
TypeScript
import Tracking from "./Tracking"
|
|
|
|
export default function NotFound() {
|
|
return (
|
|
<>
|
|
<main>
|
|
<h2>Not Found</h2>
|
|
<p>Could not find requested resource</p>
|
|
</main>
|
|
<Tracking />
|
|
</>
|
|
)
|
|
}
|