9 lines
188 B
TypeScript
9 lines
188 B
TypeScript
import { InfoLayout } from "@components/layouts";
|
|
import { type NextPage } from "next";
|
|
|
|
const Error: NextPage = () => {
|
|
return <InfoLayout>Error</InfoLayout>;
|
|
};
|
|
|
|
export default Error;
|