Skip to content

Commit 438a5ac

Browse files
committed
refactor: folder structure
1 parent 63fbd99 commit 438a5ac

21 files changed

+58
-22
lines changed

example/src/stories/Button.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { ComponentMeta, ComponentStory } from '@storybook/react'
33
import React from 'react'
44

55
export default {
6-
title: 'Button',
6+
title: 'Components/Button',
77
component: Button,
88
argTypes: {
99
children: {

example/src/stories/Card.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { ComponentMeta, ComponentStory } from '@storybook/react'
33
import React from 'react'
44

55
export default {
6-
title: 'Card',
6+
title: 'Components/Card',
77
component: Card,
88
argTypes: {
99
children: {

example/src/stories/Chip.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { ComponentMeta, ComponentStory } from '@storybook/react'
33
import React from 'react'
44

55
export default {
6-
title: 'Chip',
6+
title: 'Components/Chip',
77
component: Chip,
88
argTypes: {
99
backgroundColor: {

example/src/stories/Collapse.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { ComponentMeta, ComponentStory } from '@storybook/react'
33
import React from 'react'
44

55
export default {
6-
title: 'Collapse',
6+
title: 'Components/Collapse',
77
component: Collapse,
88
argTypes: {
99
shown: {

example/src/stories/Container.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { ComponentMeta, ComponentStory } from '@storybook/react'
33
import React from 'react'
44

55
export default {
6-
title: 'Container',
6+
title: 'Components/Container',
77
component: Container,
88
argTypes: {
99
children: {

example/src/stories/Divider.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { ComponentMeta, ComponentStory } from '@storybook/react'
33
import React from 'react'
44

55
export default {
6-
title: 'Divider',
6+
title: 'Components/Divider',
77
component: Divider,
88
argTypes: {
99
margin: {

example/src/stories/EmptyStatePlaceholder.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { ComponentMeta, ComponentStory } from '@storybook/react'
33
import React from 'react'
44

55
export default {
6-
title: 'EmptyStatePlaceholder',
6+
title: 'Components/EmptyStatePlaceholder',
77
component: EmptyStatePlaceholder,
88
argTypes: {
99
children: {

example/src/stories/Footer.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { ComponentMeta, ComponentStory } from '@storybook/react'
33
import React from 'react'
44

55
export default {
6-
title: 'Footer',
6+
title: 'Components/Footer',
77
component: Footer,
88
argTypes: {
99
children: {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { ComponentMeta, ComponentStory } from '@storybook/react'
33
import React from 'react'
44

55
export default {
6-
title: 'List',
6+
title: 'Components/List/List',
77
component: List,
88
argTypes: {
99
children: {

example/src/stories/ListItem.stories.tsx renamed to example/src/stories/List/ListItem.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { ComponentMeta, ComponentStory } from '@storybook/react'
33
import React from 'react'
44

55
export default {
6-
title: 'ListItem',
6+
title: 'Components/List/ListItem',
77
component: ListItem,
88
argTypes: {
99
children: {

0 commit comments

Comments
 (0)