/** * 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 { PageMetadata, HtmlClassNameProvider, ThemeClassNames, } from '@docusaurus/theme-common'; import BlogLayout from '@theme/BlogLayout'; import BlogListPaginator from '@theme/BlogListPaginator'; import BlogPostItems from '@theme/BlogPostItems'; import SearchMetadata from '@theme/SearchMetadata'; import ChangelogItem from '@theme/ChangelogItem'; import ChangelogListHeader from '@theme/ChangelogList/Header'; import type {Props} from '@theme/BlogListPage'; function ChangelogListMetadata(props: Props): JSX.Element { const {metadata} = props; const {blogTitle, blogDescription} = metadata; return ( <> ); } function ChangelogListContent(props: Props): JSX.Element { const {metadata, items, sidebar} = props; const {blogTitle} = metadata; return ( ); } export default function ChangelogList(props: Props): JSX.Element { return ( ); }