import styles from "./styles.module.css"; import Translate from "@docusaurus/Translate"; import Admonition from "@theme/Admonition"; import type { Props } from "@theme/EditMetaRow"; import EditThisPage from "@theme/EditThisPage"; import LastUpdated from "@theme/LastUpdated"; import clsx from "clsx"; import React from "react"; const EditMetaRow: React.FC = ({ className, editUrl, lastUpdatedAt, lastUpdatedBy, }: Props) => { return ( <>
Help us improve this content

We welcome your knowledge and expertise. If you see areas of the documentation that you can improve (fix a typo, correct a technical detail, add additional context, etc.) we would really appreciate your contribution.

{lastUpdatedAt || lastUpdatedBy ? ( ) : null}
); }; export default EditMetaRow;