6 lines
101 B
TypeScript
6 lines
101 B
TypeScript
|
import React from "react";
|
||
|
|
||
|
export const PageNotFoundPage = () => {
|
||
|
return <>Page Not Found</>;
|
||
|
};
|