microsoft/hve-core

Public

mirrored fromhttps://github.com/microsoft/hve-coreAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
feat/docs-new-user

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

docs/docusaurus/src/theme/TOCCollapsible/index.js

10lines · modecode

1import React from 'react';
2import TOCCollapsible from '@theme-original/TOCCollapsible';
3
4export default function TOCCollapsibleWrapper(props) {
5 return (
6 <>
7 <TOCCollapsible {...props} />
8 </>
9 );
10}
11