Spaces:
Paused
Paused
File size: 442 Bytes
bd0c393 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | 'use client'
import { AppSidebar } from './AppSidebar'
import { SetupBanner } from './SetupBanner'
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">
<SetupBanner />
{children}
</main>
</div>
)
}
|