Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Commit 691ffe36 authored by Christophe Chaudier's avatar Christophe Chaudier :rocket:
Browse files

fix: lint errors

parent 0019ad33
No related branches found
No related tags found
1 merge request!56Resolve "change admonitions colors"
Pipeline #5903 passed
import React from 'react'; /* eslint react/prop-types: 0 */
import clsx from 'clsx'; import React from "react";
import clsx from "clsx";
import { import {
PageMetadata, PageMetadata,
HtmlClassNameProvider, HtmlClassNameProvider,
ThemeClassNames, ThemeClassNames,
} from '@docusaurus/theme-common'; } from "@docusaurus/theme-common";
import Layout from '@theme/Layout'; import Layout from "@theme/Layout";
import MDXContent from '@theme/MDXContent'; import MDXContent from "@theme/MDXContent";
import TOC from '@theme/TOC'; import TOC from "@theme/TOC";
import styles from './styles.module.css'; import styles from "./styles.module.css";
export default function MDXPage(props) { export default function MDXPage(props) {
const {content: MDXPageContent} = props; const {content: MDXPageContent} = props;
const { const {
...@@ -25,8 +26,8 @@ export default function MDXPage(props) { ...@@ -25,8 +26,8 @@ export default function MDXPage(props) {
<PageMetadata title={title} description={description} /> <PageMetadata title={title} description={description} />
<Layout> <Layout>
<main className="container container--fluid margin-vert--lg"> <main className="container container--fluid margin-vert--lg">
<div className={clsx('row', styles.mdxPageWrapper)}> <div className={clsx("row", styles.mdxPageWrapper)}>
<div className={clsx('col', !hideTableOfContents && 'col--8')}> <div className={clsx("col", !hideTableOfContents && "col--8")}>
<MDXContent> <MDXContent>
<MDXPageContent /> <MDXPageContent />
</MDXContent> </MDXContent>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment