Files
parallel/src/pages/auth/error/index.tsx

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;