From 519a6c5df15937ff4c64163b05a32cf67476a91d Mon Sep 17 00:00:00 2001 From: faucomte97 Date: Fri, 19 Jul 2024 15:20:06 +0100 Subject: [PATCH] Even more import sort --- src/components/Introduction.tsx | 5 ++--- src/pages/codingClubs/ClubAim.tsx | 2 +- src/pages/codingClubs/CodingClubs.tsx | 14 ++++++-------- 3 files changed, 9 insertions(+), 12 deletions(-) diff --git a/src/components/Introduction.tsx b/src/components/Introduction.tsx index 2cac56a..94b8f64 100644 --- a/src/components/Introduction.tsx +++ b/src/components/Introduction.tsx @@ -1,13 +1,12 @@ import type { FC, ReactNode } from "react" import { + Unstable_Grid2 as Grid, type GridDirection, Stack, Typography, - Unstable_Grid2 as Grid, } from "@mui/material" -import type { ResponsiveStyleValue } from "@mui/system" - import { Image } from "codeforlife/components" +import type { ResponsiveStyleValue } from "@mui/system" const Introduction: FC<{ header: string diff --git a/src/pages/codingClubs/ClubAim.tsx b/src/pages/codingClubs/ClubAim.tsx index 63977a7..08c61a3 100644 --- a/src/pages/codingClubs/ClubAim.tsx +++ b/src/pages/codingClubs/ClubAim.tsx @@ -1,5 +1,5 @@ -import { type FC } from "react" import { Stack, Typography } from "@mui/material" +import { type FC } from "react" const ClubAim: FC = () => { return ( diff --git a/src/pages/codingClubs/CodingClubs.tsx b/src/pages/codingClubs/CodingClubs.tsx index c5e174a..7991f40 100644 --- a/src/pages/codingClubs/CodingClubs.tsx +++ b/src/pages/codingClubs/CodingClubs.tsx @@ -1,16 +1,14 @@ -import { type FC } from "react" +import * as page from "codeforlife/components/page" +import { Link, LinkButton } from "codeforlife/components/router" import { Typography, useTheme } from "@mui/material" import { Download as DownloadIcon } from "@mui/icons-material" +import { type FC } from "react" -import * as page from "codeforlife/components/page" - -import CodeClubHeroImage from "../../images/coding_club_hero_hexagon.png" import AboutUsImage from "../../images/about_us.jpg" -import PythonClubImage from "../../images/coding_club_python_pack.png" -import Introduction from "../../components/Introduction" - import ClubAim from "./ClubAim" -import { Link, LinkButton } from "codeforlife/components/router" +import CodeClubHeroImage from "../../images/coding_club_hero_hexagon.png" +import Introduction from "../../components/Introduction" +import PythonClubImage from "../../images/coding_club_python_pack.png" export interface CodingClubProps {}