"use client"; import { Sidebar } from "./Sidebar"; export function AppLayout({ children }: { children: React.ReactNode }) { return (
{children}
); }