Skip to content

Commit

Permalink
chore(storybook): update usage of ...args to just args
Browse files Browse the repository at this point in the history
  • Loading branch information
mgadewoll committed Mar 20, 2024
1 parent 82a4d16 commit a181db1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,5 +92,5 @@ const StatefulPlayground = (
};

export const Playground: Story = {
render: ({ ...args }) => <StatefulPlayground {...args} />,
render: (args) => <StatefulPlayground {...args} />,
};
Original file line number Diff line number Diff line change
Expand Up @@ -90,5 +90,5 @@ const StatefulPlayground = (props: EuiResizeObserverProps) => {
};

export const Playground: Story = {
render: ({ ...args }) => <StatefulPlayground {...args} />,
render: (args) => <StatefulPlayground {...args} />,
};

0 comments on commit a181db1

Please sign in to comment.