forked from cardosofelipe/fast-next-template
14 lines
403 B
TypeScript
Executable File
14 lines
403 B
TypeScript
Executable File
// Authentication components
|
|
|
|
// Initialization
|
|
export { AuthInitializer } from './AuthInitializer';
|
|
|
|
// Route protection
|
|
export { AuthGuard } from './AuthGuard';
|
|
|
|
// Forms
|
|
export { LoginForm } from './LoginForm';
|
|
export { RegisterForm } from './RegisterForm';
|
|
export { PasswordResetRequestForm } from './PasswordResetRequestForm';
|
|
export { PasswordResetConfirmForm } from './PasswordResetConfirmForm';
|