aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/organisms/comment/reply-comment-form/reply-comment-form.stories.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/organisms/comment/reply-comment-form/reply-comment-form.stories.tsx')
-rw-r--r--src/components/organisms/comment/reply-comment-form/reply-comment-form.stories.tsx25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/components/organisms/comment/reply-comment-form/reply-comment-form.stories.tsx b/src/components/organisms/comment/reply-comment-form/reply-comment-form.stories.tsx
new file mode 100644
index 0000000..57174ea
--- /dev/null
+++ b/src/components/organisms/comment/reply-comment-form/reply-comment-form.stories.tsx
@@ -0,0 +1,25 @@
+import type { ComponentMeta, ComponentStory } from '@storybook/react';
+import { Heading } from '../../../atoms';
+import { ReplyCommentForm } from './reply-comment-form';
+
+/**
+ * ReplyCommentForm - Storybook Meta
+ */
+export default {
+ title: 'Organisms/Comment/ReplyCommentForm',
+ component: ReplyCommentForm,
+ argTypes: {},
+} as ComponentMeta<typeof ReplyCommentForm>;
+
+const Template: ComponentStory<typeof ReplyCommentForm> = (args) => (
+ <ReplyCommentForm {...args} />
+);
+
+/**
+ * ReplyCommentForm Stories - Default
+ */
+export const Default = Template.bind({});
+Default.args = {
+ commentId: 5,
+ heading: <Heading level={2}>Reply to comment 5</Heading>,
+};