/**
* 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 TagsListByLetter from '@theme/TagsListByLetter';
import SearchMetadata from '@theme/SearchMetadata';
import Heading from '@theme/Heading';
function DocTagsListPageMetadata({title}) {
return (
<>
>
);
}
function DocTagsListPageContent({tags, title}) {
return (
);
}
export default function DocTagsListPage(props) {
const title = translateTagsPageTitle();
return (
<>
>
);
}