Files
hspguard/web/src/pages/NotFound/index.tsx

8 lines
137 B
TypeScript

import type { FC } from "react";
const NotFoundPage: FC = () => {
return <div>404 - Not Found</div>;
};
export default NotFoundPage;