From c95cce04393080a52a54191cff7be8fec68af4b0 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Sun, 15 May 2022 17:45:41 +0200 Subject: chore: add Article pages --- .../organisms/layout/comments-list.stories.tsx | 30 ++++++++++++++-------- 1 file changed, 20 insertions(+), 10 deletions(-) (limited to 'src/components/organisms/layout/comments-list.stories.tsx') diff --git a/src/components/organisms/layout/comments-list.stories.tsx b/src/components/organisms/layout/comments-list.stories.tsx index 9edf368..4d95205 100644 --- a/src/components/organisms/layout/comments-list.stories.tsx +++ b/src/components/organisms/layout/comments-list.stories.tsx @@ -1,13 +1,19 @@ import { ComponentMeta, ComponentStory } from '@storybook/react'; -import { IntlProvider } from 'react-intl'; import CommentsListComponent, { Comment } from './comments-list'; +const saveComment = async () => { + /** Do nothing. */ +}; + /** * CommentsList - Storybook Meta */ export default { title: 'Organisms/Layout/CommentsList', component: CommentsListComponent, + args: { + saveComment, + }, argTypes: { comments: { control: { @@ -30,6 +36,19 @@ export default { required: true, }, }, + Notice: { + control: { + type: null, + }, + description: 'A component to display a success or error message.', + table: { + category: 'Options', + }, + type: { + name: 'function', + required: false, + }, + }, saveComment: { control: { type: null, @@ -44,13 +63,6 @@ export default { }, }, }, - decorators: [ - (Story) => ( - - - - ), - ], } as ComponentMeta; const Template: ComponentStory = (args) => ( @@ -130,7 +142,6 @@ export const WithoutChildComments = Template.bind({}); WithoutChildComments.args = { comments, depth: 0, - saveComment: () => null, }; /** @@ -140,5 +151,4 @@ export const WithChildComments = Template.bind({}); WithChildComments.args = { comments, depth: 1, - saveComment: () => null, }; -- cgit v1.2.3