We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21b25da commit 764931aCopy full SHA for 764931a
src/theme/TOCItems/index.tsx
@@ -2,14 +2,15 @@ import type { WrapperProps } from "@docusaurus/types";
2
import { Carbon } from "@site/src/components/carbon";
3
import TOCItems from "@theme-original/TOCItems";
4
import type TOCItemsType from "@theme/TOCItems";
5
-import React, { type ReactNode } from "react";
+import { type ReactNode } from "react";
6
7
type Props = WrapperProps<typeof TOCItemsType>;
8
9
export default function TOCItemsWrapper(props: Props): ReactNode {
10
return (
11
<>
12
<TOCItems {...props} />
13
+ <Carbon />
14
</>
15
);
16
}
0 commit comments