mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-12-15 05:53:52 +01:00
30 lines
1.0 KiB
JavaScript
30 lines
1.0 KiB
JavaScript
/**
|
|
* 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 {
|
|
useLockBodyScroll,
|
|
useNavbarMobileSidebar,
|
|
} from '@docusaurus/theme-common/internal';
|
|
import NavbarMobileSidebarLayout from '@theme/Navbar/MobileSidebar/Layout';
|
|
import NavbarMobileSidebarHeader from '@theme/Navbar/MobileSidebar/Header';
|
|
import NavbarMobileSidebarPrimaryMenu from '@theme/Navbar/MobileSidebar/PrimaryMenu';
|
|
import NavbarMobileSidebarSecondaryMenu from '@theme/Navbar/MobileSidebar/SecondaryMenu';
|
|
export default function NavbarMobileSidebar() {
|
|
const mobileSidebar = useNavbarMobileSidebar();
|
|
useLockBodyScroll(mobileSidebar.shown);
|
|
if (!mobileSidebar.shouldRender) {
|
|
return null;
|
|
}
|
|
return (
|
|
<NavbarMobileSidebarLayout
|
|
header={<NavbarMobileSidebarHeader />}
|
|
primaryMenu={<NavbarMobileSidebarPrimaryMenu />}
|
|
secondaryMenu={<NavbarMobileSidebarSecondaryMenu />}
|
|
/>
|
|
);
|
|
}
|