/** * 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, {type ReactNode} from 'react'; import clsx from 'clsx'; import { PageMetadata, HtmlClassNameProvider, ThemeClassNames, } from '@docusaurus/theme-common'; import {translateBlogAuthorsListPageTitle} from '@docusaurus/theme-common/internal'; import BlogLayout from '@theme/BlogLayout'; import type {Props} from '@theme/Blog/Pages/BlogAuthorsListPage'; import SearchMetadata from '@theme/SearchMetadata'; import Heading from '@theme/Heading'; import Author from '@theme/Blog/Components/Author'; import type {AuthorItemProp} from '@docusaurus/plugin-content-blog'; import styles from './styles.module.css'; function AuthorListItem({author}: {author: AuthorItemProp}) { return (
  • ); } function AuthorsList({authors}: {authors: Props['authors']}) { return (
    ); } export default function BlogAuthorsListPage({ authors, sidebar, }: Props): ReactNode { const title: string = translateBlogAuthorsListPageTitle(); return ( {title} ); }