Skip to content

Commit 2108869

Browse files
refactor(trip-form/stories): Make decorator a fragment.
1 parent bc143e2 commit 2108869

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/trip-form/src/components.story.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ const onClick = action("onClick");
1717
const onQueryParamChange = action("onQueryParamChange");
1818

1919
const decorator = (Story: StoryType): ReactElement => (
20-
<div>
20+
<>
2121
<p>Plain</p>
2222
<div>
2323
<Story />
2424
</div>
2525
<p>Styled</p>
2626
<div>{trimet(<Story />)}</div>
27-
</div>
27+
</>
2828
);
2929

3030
/**

0 commit comments

Comments
 (0)