/** * 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 Layout from '@theme/Layout'; import MDXContent from '@theme/MDXContent'; import TOC from '@theme/TOC'; import ContentVisibility from '@theme/ContentVisibility'; import type {Props} from '@theme/MDXPage'; import EditMetaRow from '@theme/EditMetaRow'; import styles from './styles.module.css'; export default function MDXPage(props: Props): ReactNode { const {content: MDXPageContent} = props; const {metadata, assets} = MDXPageContent; const { title, editUrl, description, frontMatter, lastUpdatedBy, lastUpdatedAt, } = metadata; const { keywords, wrapperClassName, hide_table_of_contents: hideTableOfContents, } = frontMatter; const image = assets.image ?? frontMatter.image; const canDisplayEditMetaRow = !!(editUrl || lastUpdatedAt || lastUpdatedBy); return (
{canDisplayEditMetaRow && ( )}
{!hideTableOfContents && MDXPageContent.toc.length > 0 && (
)}
); }