From 12a03a9a72f7895d571dbaeeb245d92aa277a610 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Fri, 6 Oct 2023 17:48:03 +0200 Subject: refactor(components): merge HeadingButton and Widget components The HeadingButton component was only used inside Widget component and it is not very useful on its own so I merge the two components in a new Collapsible component. --- .../organisms/widgets/social-media.stories.tsx | 30 +++++----------------- 1 file changed, 6 insertions(+), 24 deletions(-) (limited to 'src/components/organisms/widgets/social-media.stories.tsx') diff --git a/src/components/organisms/widgets/social-media.stories.tsx b/src/components/organisms/widgets/social-media.stories.tsx index 6da3f3a..8064157 100644 --- a/src/components/organisms/widgets/social-media.stories.tsx +++ b/src/components/organisms/widgets/social-media.stories.tsx @@ -1,4 +1,5 @@ import type { ComponentMeta, ComponentStory } from '@storybook/react'; +import { Heading } from '../../atoms'; import { SocialMedia as SocialMediaWidget, type Media } from './social-media'; /** @@ -8,18 +9,6 @@ export default { title: 'Organisms/Widgets', component: SocialMediaWidget, argTypes: { - level: { - control: { - type: 'number', - min: 1, - max: 6, - }, - description: 'The heading level.', - type: { - name: 'number', - required: true, - }, - }, media: { description: 'The links data.', type: { @@ -28,16 +17,6 @@ export default { value: {}, }, }, - title: { - control: { - type: 'text', - }, - description: 'The widget title.', - type: { - name: 'string', - required: true, - }, - }, }, } as ComponentMeta; @@ -55,7 +34,10 @@ const media: Media[] = [ */ export const SocialMedia = Template.bind({}); SocialMedia.args = { + heading: ( + + Follow me + + ), media, - title: 'Follow me', - level: 2, }; -- cgit v1.2.3