mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-15 18:17:35 +02:00
* chore(v2): Fix linter warnings 223 warnings to 145 warnings * Remove explicit type annotations * Do not prefetch when targetLink == null
14 lines
354 B
TypeScript
14 lines
354 B
TypeScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
import React from 'react';
|
|
|
|
function TOCInline(_props: Record<string, unknown>): JSX.Element {
|
|
return <div>TODO bootstrap toc</div>;
|
|
}
|
|
|
|
export default TOCInline;
|