import React from 'react'; import { Sidebar } from '@/ui/Sidebar'; interface AppSidebarProps { children?: React.ReactNode; } /** * AppSidebar is the "dashboard rail" of the application. * It provides global navigation and context. */ export function AppSidebar({ children }: AppSidebarProps) { return ( {children} ); }