/** * 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, {memo, type ReactNode} from 'react'; import { useVisibleBlogSidebarItems, BlogSidebarItemList, } from '@docusaurus/plugin-content-blog/client'; import {NavbarSecondaryMenuFiller} from '@docusaurus/theme-common'; import BlogSidebarContent from '@theme/BlogSidebar/Content'; import type {Props} from '@theme/BlogSidebar/Mobile'; import type {Props as BlogSidebarContentProps} from '@theme/BlogSidebar/Content'; import styles from './styles.module.css'; const ListComponent: BlogSidebarContentProps['ListComponent'] = ({items}) => { return ( ); }; function BlogSidebarMobileSecondaryMenu({sidebar}: Props): ReactNode { const items = useVisibleBlogSidebarItems(sidebar.items); return ( ); } function BlogSidebarMobile(props: Props): ReactNode { return ( ); } export default memo(BlogSidebarMobile);