diff options
| author | Armand Philippot <git@armandphilippot.com> | 2023-10-06 17:48:03 +0200 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2023-11-11 18:14:41 +0100 |
| commit | 12a03a9a72f7895d571dbaeeb245d92aa277a610 (patch) | |
| tree | 41b6b07928e4f5e101b7ea5d8389bb4325bbac76 /src/components/templates/page/page-layout.stories.tsx | |
| parent | fb860884857da73ee5b5e897745301cdf1d770a2 (diff) | |
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.
Diffstat (limited to 'src/components/templates/page/page-layout.stories.tsx')
| -rw-r--r-- | src/components/templates/page/page-layout.stories.tsx | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/components/templates/page/page-layout.stories.tsx b/src/components/templates/page/page-layout.stories.tsx index 68df415..683b6b2 100644 --- a/src/components/templates/page/page-layout.stories.tsx +++ b/src/components/templates/page/page-layout.stories.tsx @@ -252,8 +252,6 @@ SinglePage.args = { 'linkedin', 'twitter', ]} - level={2} - expanded={true} />, ], withToC: true, @@ -330,8 +328,6 @@ Post.args = { 'linkedin', 'twitter', ]} - level={2} - expanded={true} />, ], withToC: true, @@ -372,10 +368,13 @@ Blog.args = { ), widgets: [ <LinksListWidget - key="sidebar-widget1" + heading={ + <Heading isFake level={3}> + Categories + </Heading> + } items={blogCategories} - title="Categories" - level={2} + key="sidebar-widget1" />, ], }; |
