Skip to content

Commit

Permalink
rework: remove unnecessary Row and Col wrappers from AccordionNew story
Browse files Browse the repository at this point in the history
  • Loading branch information
iacopolea committed Dec 18, 2024
1 parent 86757da commit e23c426
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/stories/accordion-new/index.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,7 @@ const meta = {

render: ({ ...args }) => {
return (
<Row justifyContent="center">
<Col sm={10}>

<AccordionNew {...args}>
{items.map((item) => {
const [selected, setIsSelected] = useState(false);
Expand Down Expand Up @@ -96,8 +95,6 @@ const meta = {
)
})}
</AccordionNew>
</Col>
</Row>
);
},
} satisfies Meta<StoryArgs>;
Expand Down

0 comments on commit e23c426

Please sign in to comment.