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