'use client' import type { ReactNode } from 'react' import AdminSidebar from './AdminSidebar' type AdminShellProps = { title: string subtitle?: string actions?: ReactNode children: ReactNode } export default function AdminShell({ title, subtitle, actions, children }: AdminShellProps) { return (

{title}

{subtitle &&

{subtitle}

}
{actions}
{children}
) }