From ba02e99ec5a79d5b1ccd31d570176a48887bab42 Mon Sep 17 00:00:00 2001 From: gustavoschaedler Date: Wed, 26 Jul 2023 18:02:12 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=84=20refactor(index.tsx):=20reorder?= =?UTF-8?q?=20import=20statements=20for=20better=20organization=20and=20re?= =?UTF-8?q?adability?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/frontend/src/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontend/src/index.tsx b/src/frontend/src/index.tsx index 0ce5c0f5b..31d8f21f1 100644 --- a/src/frontend/src/index.tsx +++ b/src/frontend/src/index.tsx @@ -5,9 +5,9 @@ import ContextWrapper from "./contexts"; import reportWebVitals from "./reportWebVitals"; import { ApiInterceptor } from "./controllers/API/api"; -import "./style/applies.css"; -import "./style/classes.css"; import "./style/index.css"; +import "./style/classes.css"; +import "./style/applies.css"; const root = ReactDOM.createRoot( document.getElementById("root") as HTMLElement