/** * 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'; import clsx from 'clsx'; import {useThemeConfig} from '@docusaurus/theme-common'; import Logo from '@theme/Logo'; import CollapseButton from '@theme/DocSidebar/Desktop/CollapseButton'; import Content from '@theme/DocSidebar/Desktop/Content'; import styles from './styles.module.css'; function DocSidebarDesktop({path, sidebar, onCollapse, isHidden}) { const { navbar: {hideOnScroll}, docs: { sidebar: {hideable}, }, } = useThemeConfig(); return (
{hideOnScroll && } {hideable && }
); } export default React.memo(DocSidebarDesktop);