baveshraam's picture
FIX: SurrealDB 2.0 migration syntax and Frontend/CORS link
f871fed
'use client'
import { AppSidebar } from './AppSidebar'
interface AppShellProps {
children: React.ReactNode
}
export function AppShell({ children }: AppShellProps) {
return (
<div className="flex h-screen overflow-hidden">
<AppSidebar />
<main className="flex-1 flex flex-col min-h-0 overflow-hidden">
{children}
</main>
</div>
)
}