aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/organisms/comment/pending-comment/pending-comment.stories.tsx
blob: 1b6e1d97e2a3454e57c0daf3f2f74aa9a62206a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 = {};