Skip to content

Commit

Permalink
Improve storybook components path
Browse files Browse the repository at this point in the history
  • Loading branch information
Henrique Macedo committed Jan 19, 2021
1 parent 0dd63cd commit 541b86b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions stories/checkbox.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ import React from 'react';
import { Checkbox } from '../src';

export default {
title: 'Design System|Atoms|Checkbox',
title: 'Atoms/Checkbox',
component: Checkbox,
};

export const CheckboxComponent = args => <Checkbox {...args} />;
export const CheckboxComponent = (args) => <Checkbox {...args} />;

CheckboxComponent.args = {
name: 'Checkbox',
Expand Down
2 changes: 1 addition & 1 deletion stories/tag.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react';
import { Tag } from '../src';

export default {
title: 'Design System|Atoms/Tags',
title: 'Atoms/Tags',
component: Tag,
};

Expand Down

0 comments on commit 541b86b

Please sign in to comment.