blob: d823082e13214931e0b8a58284340dda4010094e (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | import type { Meta, StoryObj } from '@storybook/react';
import { PendingComment } from './pending-comment';
const meta = {
  component: PendingComment,
  title: 'Organisms/Comment/Pending',
} satisfies Meta<typeof PendingComment>;
export default meta;
type Story = StoryObj<typeof meta>;
export const Example: Story = {
  args: {},
};
 |