UNPKG

create-automaticgpt-template

Version:

AutomaticGPT - A production-ready Expo template with AI chat, authentication, conversation management, analytics, and sharing features

18 lines (14 loc) 511 B
/** * Auth Feature Barrel Exports * Centralized exports for authentication functionality */ // Components export { AuthProvider } from './components/AuthProvider'; export { AuthScreen } from './components/AuthScreen'; export { AuthForm } from './components/AuthForm'; export { AuthMethodButton } from './components/AuthMethodButton'; // Hooks export { useAuth } from './hooks/useAuth'; export { useAuthForm } from './hooks/useAuthForm'; // Types export type { AuthContextType, AuthState } from './types';