19 lines
365 B
TypeScript
19 lines
365 B
TypeScript
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 (
|
|
<Sidebar>
|
|
{children}
|
|
</Sidebar>
|
|
);
|
|
}
|