# Quick Start Guide ## 🎯 What You Have A complete, configurable authentication package for React Native apps using Mana Core. ## πŸ“¦ Package Location ``` /Users/wuesteon/memoro_new/mana-2025/storyteller-project/@mana-auth-mobile/ ``` ## ⚑ Quick Usage (After Completion) ### 1. Install in Your App ```bash # Local testing cd @mana-auth-mobile && npm link cd ../mobile && npm link @mana/auth-mobile # Or from npm (after publishing) npm install @mana/auth-mobile ``` ### 2. Wrap Your App ```typescript // app/_layout.tsx import { ManaAuthConfigProvider, ManaAuthProvider } from '@mana/auth-mobile'; export default function RootLayout() { return ( {/* Your app content */} ); } ``` ### 3. Use in Screens ```typescript // app/login.tsx import { ManaLoginScreen } from '@mana/auth-mobile'; export default function LoginScreen() { return ; } ``` ```typescript // Any screen import { useManaAuth } from '@mana/auth-mobile'; function MyScreen() { const { user, signOut, isAuthenticated } = useManaAuth(); if (!isAuthenticated) return ; return ( Welcome {user?.name}!