/** * 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, translateTagsPageTitle, } from '@docusaurus/theme-common'; import BlogLayout from '@theme/BlogLayout'; import TagsListByLetter from '@theme/TagsListByLetter'; import SearchMetadata from '@theme/SearchMetadata'; import Heading from '@theme/Heading'; export default function BlogTagsListPage({tags, sidebar}) { const title = translateTagsPageTitle(); return ( {title} ); }