diff options
Diffstat (limited to 'src/components/organisms/comment/pending-comment/pending-comment.stories.tsx')
| -rw-r--r-- | src/components/organisms/comment/pending-comment/pending-comment.stories.tsx | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/components/organisms/comment/pending-comment/pending-comment.stories.tsx b/src/components/organisms/comment/pending-comment/pending-comment.stories.tsx new file mode 100644 index 0000000..1b6e1d9 --- /dev/null +++ b/src/components/organisms/comment/pending-comment/pending-comment.stories.tsx @@ -0,0 +1,21 @@ +import type { ComponentMeta, ComponentStory } from '@storybook/react'; +import { PendingComment } from './pending-comment'; + +/** + * PendingComment - Storybook Meta + */ +export default { + title: 'Organisms/Comment/PendingComment', + component: PendingComment, + argTypes: {}, +} as ComponentMeta<typeof PendingComment>; + +const Template: ComponentStory<typeof PendingComment> = (args) => ( + <PendingComment {...args} /> +); + +/** + * PendingComment Stories - Default + */ +export const Default = Template.bind({}); +Default.args = {}; |
