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';
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>
......
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