import { GestureHandlerRootView } from "react-native-gesture-handler"; import { Drawer } from "expo-router/drawer"; import React from "react"; import { useMedia } from "tamagui"; import DrawerContent, { DrawerNavigationOptions, } from "@/components/containers/drawer"; import Icons from "@/components/ui/icons"; import { useUser } from "@/hooks/useUser"; import { useTeamId } from "@/stores/auth"; export default function Layout() { const media = useMedia(); const teamId = useTeamId(); const user = useUser(); return ( null, headerStyle: { elevation: 0, borderBottomWidth: 0 }, }} > ( ), }} /> ( ), } as DrawerNavigationOptions } /> ( ), }} /> ( ), } as DrawerNavigationOptions } /> ); }