import { getCurrentOrganizations, getDashboardsByOrganization, } from '@mixan/db'; import { LayoutSidebar } from './layout-sidebar'; interface AppLayoutProps { children: React.ReactNode; params: { organizationId: string; }; } export default async function AppLayout({ children, params: { organizationId }, }: AppLayoutProps) { const [organizations, dashboards] = await Promise.all([ getCurrentOrganizations(), getDashboardsByOrganization(organizationId), ]); return (
{children}
); }