import React from "react"; import { CardProps, FormProps, LayoutProps } from "antd"; import { AuthPageProps } from "@pankod/refine-core"; import { LoginPage, RegisterPage, ForgotPasswordPage, UpdatePasswordPage, } from "./components"; export type AuthProps = AuthPageProps; /** * **refine** has a default auth page form served on the `/login` route when the `authProvider` configuration is provided. * * @see {@link https://refine.dev/docs/ui-frameworks/antd/components/authpage/} for more details. */ export const AuthPage: React.FC = (props) => { const { type } = props; const renderView = () => { switch (type) { case "register": return ; case "forgotPassword": return ; case "updatePassword": return ; default: return ; } }; return <>{renderView()}; };