'use client'; import { Sidebar } from './sidebar'; import { UserMenu } from './user-menu'; import { NotificationBell } from '@/components/notifications/notification-bell'; export function IdShell({ active, children, wide = false }: { active: string; children: React.ReactNode; wide?: boolean }) { return (
{children}
); }