import ProjectListSideBar from '@/components/sidebar/ProjectListSideBar'; interface ChatLayoutProps { children: React.ReactNode; } export default async function Layout({ children }: ChatLayoutProps) { return (
{children}
); }