import { AppNavMainData } from '@/infra/routes/nav'; import { Sidebar, SidebarContent, SidebarFooter, SidebarHeader, SidebarRail, } from '@/views/components/ui/sidebar'; import type { ComponentPropsWithoutRef } from 'react'; import { AppIcon } from './app-icon'; import { NavMain } from './nav-main'; import { NavUser } from './nav-user'; const data = { user: { name: 'shadcn', email: 'm@example.com', avatar: '/avatars/shadcn.jpg', }, }; type AppSidebarRootProps = Omit< ComponentPropsWithoutRef, 'collapsible' >; export const AppSidebar = (props: AppSidebarRootProps) => { return ( ); };