import { NavSecondary } from "./NavSecondary"; import { Sidebar, SidebarContent, SidebarFooter, SidebarHeader, } from "./ui/sidebar"; import { ReactNode } from "react"; interface AppSidebarShellProps extends React.ComponentProps { navUser: ReactNode; navMain: ReactNode; organizationSwitcher: ReactNode; } export function AppSidebarShell({ navUser, navMain, organizationSwitcher, ...props }: AppSidebarShellProps) { return ( {organizationSwitcher} {navMain} {navUser} ); }