diff --git a/src/theme/MDXPage/index.js b/src/theme/MDXPage/index.js index fd944c07d49839d70bb637eeeaac96a0547be439..6f4f6ab0b2eb3865382ea45e20d357e058164cbb 100644 --- a/src/theme/MDXPage/index.js +++ b/src/theme/MDXPage/index.js @@ -1,14 +1,15 @@ -import React from 'react'; -import clsx from 'clsx'; +/* eslint react/prop-types: 0 */ +import React 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 styles from './styles.module.css'; +} from "@docusaurus/theme-common"; +import Layout from "@theme/Layout"; +import MDXContent from "@theme/MDXContent"; +import TOC from "@theme/TOC"; +import styles from "./styles.module.css"; export default function MDXPage(props) { const {content: MDXPageContent} = props; const { @@ -25,8 +26,8 @@ export default function MDXPage(props) { <PageMetadata title={title} description={description} /> <Layout> <main className="container container--fluid margin-vert--lg"> - <div className={clsx('row', styles.mdxPageWrapper)}> - <div className={clsx('col', !hideTableOfContents && 'col--8')}> + <div className={clsx("row", styles.mdxPageWrapper)}> + <div className={clsx("col", !hideTableOfContents && "col--8")}> <MDXContent> <MDXPageContent /> </MDXContent>