From e23c426e535681360f3225e1d33f06d8516cd091 Mon Sep 17 00:00:00 2001 From: Iacopo Leardini Date: Wed, 18 Dec 2024 12:06:43 +0100 Subject: [PATCH] rework: remove unnecessary Row and Col wrappers from AccordionNew story --- src/stories/accordion-new/index.stories.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/stories/accordion-new/index.stories.tsx b/src/stories/accordion-new/index.stories.tsx index 0e346906..81e60fc8 100644 --- a/src/stories/accordion-new/index.stories.tsx +++ b/src/stories/accordion-new/index.stories.tsx @@ -43,8 +43,7 @@ const meta = { render: ({ ...args }) => { return ( - - + {items.map((item) => { const [selected, setIsSelected] = useState(false); @@ -96,8 +95,6 @@ const meta = { ) })} - - ); }, } satisfies Meta;