import React from 'react'; import clsx from 'clsx'; import TOCItems from '@theme/TOCItems'; import styles from './styles.module.css'; // Using a custom className import SidebarAd from '../../components/SidebarAd'; import CarbonAd from '../../components/CarbonAd'; // This prevents TOC highlighting to highlight TOCInline/TOCCollapsible by mistake const LINK_CLASS_NAME = 'table-of-contents__link toc-highlight'; const LINK_ACTIVE_CLASS_NAME = 'table-of-contents__link--active'; function TOC({className, ...props}) { return (
); } export default TOC;