sparkast/app/not-found.tsx
2024-03-31 00:56:04 +08:00

10 lines
164 B
TypeScript

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