import { Tabs, Redirect } from 'expo-router'; import React from 'react'; import { HapticTab } from '@/components/haptic-tab'; import { IconSymbol } from '@/components/ui/icon-symbol'; import { Colors } from '@/constants/theme'; import { useColorScheme } from '@/hooks/use-color-scheme'; import { useAuth } from '@/hooks/use-auth'; export default function TabLayout() { const colorScheme = useColorScheme(); const { isAuthenticated, isLoading } = useAuth(); if (isLoading) { return null; } if (!isAuthenticated) { return ; } return ( , }} /> , }} /> , }} /> ); }