From 34008bf3d0bf6fce5aef667006668954b61a7772 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Thu, 27 Jul 2023 07:02:48 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=84=20refactor(index.tsx):=20reorder?= =?UTF-8?q?=20import=20statements=20for=20better=20readability=20and=20con?= =?UTF-8?q?sistency?= 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 31d8f21f1..0ce5c0f5b 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/index.css"; -import "./style/classes.css"; import "./style/applies.css"; +import "./style/classes.css"; +import "./style/index.css"; const root = ReactDOM.createRoot( document.getElementById("root") as HTMLElement