diff --git a/web/src/components/layout/AppShell.tsx b/web/src/components/layout/AppShell.tsx index 75da8ae..a2d7bad 100644 --- a/web/src/components/layout/AppShell.tsx +++ b/web/src/components/layout/AppShell.tsx @@ -1,11 +1,17 @@ import * as React from 'react' import { TopBar } from './TopBar' -export function AppShell({ children }: { children: React.ReactNode }) { +interface AppShellProps { + children: React.ReactNode + /** When true, removes default padding/max-width from the main content area */ + noPadding?: boolean +} + +export function AppShell({ children, noPadding = false }: AppShellProps) { return (