import AppLogo from '@/components/app-logo'; import { Sidebar, SidebarContent, SidebarFooter, SidebarHeader, SidebarMenu, SidebarMenuItem, useSidebar } from '@/components/ui/sidebar'; import { useIsMobile } from '@/hooks/use-mobile'; import { NavMain } from '@/layouts/dashboard/partials/nav-main'; import { NavUser } from '@/layouts/dashboard/partials/nav-user'; import { SharedData } from '@/types/global'; import { Link, usePage } from '@inertiajs/react'; const DashboardSidebar = () => { const { state } = useSidebar(); const { props } = usePage(); const compact = state === 'collapsed' ? true : false; const isMobile = useIsMobile(); return ( {!compact && ( )} ); }; export default DashboardSidebar;