diff --git a/view/next-project/src/stories/CloseButton.stories.tsx b/view/next-project/src/stories/CloseButton.stories.tsx new file mode 100644 index 000000000..82353e25f --- /dev/null +++ b/view/next-project/src/stories/CloseButton.stories.tsx @@ -0,0 +1,18 @@ +import { Meta } from '@storybook/react'; +import { CloseButton } from '@components/common'; + +const meta: Meta = { + title: 'FinanSu/CloseButton', + component: CloseButton, + tags: ['autodocs'], + argTypes: {}, +}; + +export default meta; + +export const Primary = { + args: { + className: 'm-10', + children:

children

, + }, +}; diff --git a/view/next-project/src/stories/DeleteButton.stories.tsx b/view/next-project/src/stories/DeleteButton.stories.tsx new file mode 100644 index 000000000..b1cc81f33 --- /dev/null +++ b/view/next-project/src/stories/DeleteButton.stories.tsx @@ -0,0 +1,18 @@ +import { Meta } from '@storybook/react'; +import { DeleteButton } from '@components/common'; + +const meta: Meta = { + title: 'FinanSu/DeleteButton', + component: DeleteButton, + tags: ['autodocs'], + argTypes: {}, +}; + +export default meta; + +export const Primary = { + args: { + className: 'm-10', + children:

children

, + }, +}; diff --git a/view/next-project/src/stories/Dropdown.stories.tsx b/view/next-project/src/stories/Dropdown.stories.tsx new file mode 100644 index 000000000..7ecd4b87f --- /dev/null +++ b/view/next-project/src/stories/Dropdown.stories.tsx @@ -0,0 +1,18 @@ +import { Meta } from '@storybook/react'; +import { Dropdown } from '@components/common'; + +const meta: Meta = { + title: 'FinanSu/Dropdown', + component: Dropdown, + tags: ['autodocs'], + argTypes: {}, +}; + +export default meta; + +export const Primary = { + args: { + className: 'm-10', + children:

children

, + }, +}; diff --git a/view/next-project/src/stories/PulldownButton.stories.tsx b/view/next-project/src/stories/PulldownButton.stories.tsx new file mode 100644 index 000000000..feebdf5de --- /dev/null +++ b/view/next-project/src/stories/PulldownButton.stories.tsx @@ -0,0 +1,18 @@ +import { Meta } from '@storybook/react'; +import PulldownButton from '@/components/common/PulldownButton'; + +const meta: Meta = { + title: 'FinanSu/PulldownButton', + component: PulldownButton, + tags: ['autodocs'], + argTypes: {}, +}; + +export default meta; + +export const Primary = { + args: { + className: 'm-10', + children:

children

, + }, +};