Potion/web/src/pages/NotFound.tsx
Hayden Hargreaves a0d4f29527 (FEAT): Init the React + TSX project!
Jeez, how far I have come...
2025-10-29 19:59:10 -07:00

10 lines
98 B
TypeScript

export default function NotFound() {
return (
<>
<h1>Not Found!</h1>
</>
);
}