Files
Blog/src/frontend/pages/not-found.tsx

10 lines
144 B
TypeScript

import React from 'react';
export function NotFound() {
return (
<main>
<h1>404 Not Found</h1>
</main>
)
}