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. --- src/components/organisms/widgets/table-of-contents.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/components/organisms/widgets/table-of-contents.tsx') diff --git a/src/components/organisms/widgets/table-of-contents.tsx b/src/components/organisms/widgets/table-of-contents.tsx index e67b495..8892485 100644 --- a/src/components/organisms/widgets/table-of-contents.tsx +++ b/src/components/organisms/widgets/table-of-contents.tsx @@ -3,6 +3,7 @@ import { useIntl } from 'react-intl'; import { useHeadingsTree, type Heading } from '../../../utils/hooks'; import { type LinksListItems, LinksListWidget } from './links-list-widget'; import styles from './table-of-contents.module.scss'; +import { Heading as HeadingComponent } from 'src/components/atoms'; type TableOfContentsProps = { /** @@ -43,10 +44,13 @@ export const TableOfContents: FC = ({ wrapper }) => { return ( + {title} + + } isOrdered items={getItems(headingsTree)} - level={2} - title={title} /> ); }; -- cgit v1.2.3