import { DrawerItem } from "@react-navigation/drawer"; import { Drawer } from "expo-router/drawer"; import { useAuthStore } from "@/store/authStore"; import { DrawerContentScrollView, DrawerItemList, } from "@react-navigation/drawer"; export default function AccountDrawerLayout() { const signOut = useAuthStore((state) => state.signOut); return ( ( )} > ); }