16 lines
383 B
TypeScript
16 lines
383 B
TypeScript
|
|
// Layout components
|
||
|
|
export { AuthLayout } from "./auth-layout";
|
||
|
|
|
||
|
|
// Form components
|
||
|
|
export { FormField } from "./form-field";
|
||
|
|
export { LoginForm } from "./login-form";
|
||
|
|
export { EmailSetupForm } from "./email-setup-form";
|
||
|
|
export { OTPForm } from "./otp-form";
|
||
|
|
|
||
|
|
// Types
|
||
|
|
export type {
|
||
|
|
AuthLayoutProps,
|
||
|
|
LoginFormProps,
|
||
|
|
EmailSetupFormProps,
|
||
|
|
OTPFormProps,
|
||
|
|
} from "@/types/auth";
|