diff --git a/src/components/common/LayoutBox.tsx b/src/components/common/LayoutBox.tsx index 7dd1ec6..668dbc1 100644 --- a/src/components/common/LayoutBox.tsx +++ b/src/components/common/LayoutBox.tsx @@ -9,7 +9,7 @@ type LayoutBoxPropsType = { align?: 'start' | 'end' | 'center'; gap?: number; max?: number; - children: ReactNode; + children?: ReactNode; }; export const LayoutBox = ({ width, height, flex, justify, align, gap, children, max }: LayoutBoxPropsType) => {