Skip to content

Commit

Permalink
chore(storybook): change directory structure
Browse files Browse the repository at this point in the history
Co-Authored-By: Rita Lopes <[email protected]>
  • Loading branch information
tomas-sucena and MRita443 committed Dec 4, 2024
1 parent d14c25c commit 43fb97a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/lib/components/forms/label-input.stories.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import LabelInput from './label-input.svelte';

export default {
title: 'Atoms/LabelInput',
title: 'Atoms/Forms/Label Input',
component: LabelInput,
argTypes: {
label: { control: 'text' },
Expand Down
4 changes: 2 additions & 2 deletions src/lib/components/forms/picture-input.stories.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import PictureInput from './picture-input.svelte';

export default {
title: 'Atoms/Forms/Picture Input',
title: 'Atoms/Forms',
component: PictureInput,
argTypes: {
text: { control: 'text' }
Expand All @@ -11,7 +11,7 @@ export default {
}
};

export const Example = {
export const Picture_Input = {
args: {
text: 'Adicionar logo'
}
Expand Down
4 changes: 2 additions & 2 deletions src/lib/components/forms/radio-buttons.stories.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import RadioButtons from './radio-buttons.svelte';

export default {
title: 'Atoms/Forms/Radio Buttons',
title: 'Atoms/Forms',
component: RadioButtons,
argTypes: {
options: { control: 'array' }
Expand All @@ -11,7 +11,7 @@ export default {
}
};

export const Example = {
export const Radio_Button = {
args: {
options: ['English', 'Spanish']
}
Expand Down

0 comments on commit 43fb97a

Please sign in to comment.