From 0f936ec0e7606cb79434d94096b6e113a7ce78eb Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Fri, 15 Dec 2023 18:35:16 +0100 Subject: refactor(stories): migrate stories to CSF3 format --- .../comment/pending-comment/pending-comment.stories.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/components/organisms/comment/pending-comment/pending-comment.stories.ts (limited to 'src/components/organisms/comment/pending-comment/pending-comment.stories.ts') diff --git a/src/components/organisms/comment/pending-comment/pending-comment.stories.ts b/src/components/organisms/comment/pending-comment/pending-comment.stories.ts new file mode 100644 index 0000000..d823082 --- /dev/null +++ b/src/components/organisms/comment/pending-comment/pending-comment.stories.ts @@ -0,0 +1,15 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import { PendingComment } from './pending-comment'; + +const meta = { + component: PendingComment, + title: 'Organisms/Comment/Pending', +} satisfies Meta; + +export default meta; + +type Story = StoryObj; + +export const Example: Story = { + args: {}, +}; -- cgit v1.2.3