diff --git a/frontend/src/components/layouts.tsx b/frontend/src/components/layouts.tsx index a30858586..740da2215 100644 --- a/frontend/src/components/layouts.tsx +++ b/frontend/src/components/layouts.tsx @@ -51,6 +51,7 @@ interface PageProps { children?: ReactNode; subtitle?: ReactNode; actions?: ReactNode; + wrapSize?: "md" | "lg" | "xl" | "2xl"; } export const Page = ({ @@ -61,10 +62,13 @@ export const Page = ({ subtitle, actions, children, + wrapSize = "lg", }: PageProps) => (