interface AppShellProps {
className?: string
header?: ReactNode
sidebar?: ReactNode
navbar?: ReactNode
}
interface AppShellProps {
className?: string
header?: ReactNode
sidebar?: ReactNode
navbar?: ReactNode
}
<AppShell
className="mx-auto max-w-3xl p-4"
header={<TopAppBar {/* ... */} />}
sidebar={<NavDrawer>{/* ... */}</NavDrawer>}
navbar={<NavBar>{/* ... */}</NavBar>}
>
{children}
</AppShell>
<AppShell
className="mx-auto max-w-3xl p-4"
header={<TopAppBar {/* ... */} />}
sidebar={<NavDrawer>{/* ... */}</NavDrawer>}
navbar={<NavBar>{/* ... */}</NavBar>}
>
{children}
</AppShell>