Skip to content

Commit

Permalink
remove redundant render args in stories
Browse files Browse the repository at this point in the history
  • Loading branch information
shan8851 committed Oct 14, 2024
1 parent 3732bda commit 9dbe990
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ type Story = StoryObj<typeof CheckboxCard>;
* Default usage of the CheckboxCard component
*/
export const Default: Story = {
render: (props) => <CheckboxCard {...props} />,
args: {
avatar: 'https://assets-global.website-files.com/5e997428d0f2eb13a90aec8c/63f47db62df04b569e4e004e_icon_aragon.svg',
label: 'Checkbox label',
Expand All @@ -33,7 +32,6 @@ export const Default: Story = {
* Default usage of the CheckboxCard component
*/
export const WithDescription: Story = {
render: (props) => <CheckboxCard {...props} />,
args: {
avatar: 'https://assets-global.website-files.com/5e997428d0f2eb13a90aec8c/63f47db62df04b569e4e004e_icon_aragon.svg',
label: 'Checkbox label',
Expand All @@ -46,7 +44,6 @@ export const WithDescription: Story = {
* Usage of the CheckboxCard component with children when checked
*/
export const WithChildrenWhenChecked: Story = {
render: (props) => <CheckboxCard {...props} />,
args: {
avatar: 'https://assets-global.website-files.com/5e997428d0f2eb13a90aec8c/63f47db62df04b569e4e004e_icon_aragon.svg',
label: 'Checkbox label',
Expand Down

0 comments on commit 9dbe990

Please sign in to comment.