import { useAuth } from '@/hooks/useAuth' import { useRouter } from 'expo-router' import { FAB, List, Surface } from 'react-native-paper' export default function HistoryScreen() { const router = useRouter() const auth = useAuth() return ( router.navigate('/login')} />} onPress={() => router.navigate('/login')} /> ) }