Skip to content

Commit 521b196

Browse files
committed
lint
1 parent 805959b commit 521b196

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

mdx-components.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { MDXComponents } from "mdx/types";
22
import Image, { ImageProps } from "next/image";
33
import Link from "next/link";
44

5-
import { CallOut } from "@codegouvfr/react-dsfr/Callout";
5+
import { CallOut } from "@codegouvfr/react-dsfr/CallOut";
66
import { Table } from "@codegouvfr/react-dsfr/Table";
77
import { fr } from "@codegouvfr/react-dsfr";
88

src/pages/budget.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from "react";
22
import type { NextPage } from "next";
33
import Head from "next/head";
44
import Table from "@codegouvfr/react-dsfr/Table";
5-
import Callout from "@codegouvfr/react-dsfr/Callout";
5+
import CallOut from "@codegouvfr/react-dsfr/CallOut";
66

77
const Budget: NextPage = () => (
88
<div>
@@ -67,14 +67,14 @@ const Budget: NextPage = () => (
6767
]}
6868
></Table>
6969
<br />
70-
<Callout title="À propos de la TVA">
70+
<CallOut title="À propos de la TVA">
7171
Contrairement aux entreprises du secteur privé, les administrations ne
7272
peuvent pas récupérer la TVA supportée sur leurs achats dans le cadre de
7373
leur activité. Le montant TTC inclut la TVA au taux de 20%.
7474
<br />
7575
La TVA est collectée et reversée à l’État et diminue donc le montant du
7676
budget utilisable sur le projet.
77-
</Callout>
77+
</CallOut>
7878
</div>
7979
);
8080

src/pages/sos.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
import React, { useEffect } from "react";
1+
import React from "react";
22
import type { NextPage } from "next";
33
import Head from "next/head";
4-
import Table from "@codegouvfr/react-dsfr/Table";
5-
import Callout from "@codegouvfr/react-dsfr/Callout";
64
import { fr } from "@codegouvfr/react-dsfr";
75

86
const SosPage: NextPage = () => (

0 commit comments

Comments
 (0)