6 lines
124 B
TypeScript
6 lines
124 B
TypeScript
import { NotFoundPage } from "../components/ErrorPages";
|
|
|
|
export default function NotFound() {
|
|
return <NotFoundPage />;
|
|
}
|