From bcfaf03c270ba6af5e43616dc7bba68653dc3253 Mon Sep 17 00:00:00 2001 From: dutexion Date: Sun, 4 Aug 2024 16:18:07 +0900 Subject: [PATCH] chore :: layoutbox --- src/components/common/LayoutBox.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) => {