import { Sidebar } from '@/components/ui/sidebar'; import type { PropsWithChildren } from 'react'; export default function NavSidebar({ children }: PropsWithChildren) { return ( {children} ); }