From 6b62f4e091e96e30df29ddf1e7a464a18ef94c94 Mon Sep 17 00:00:00 2001 From: Bastien Dumont Date: Sun, 19 May 2024 15:10:18 +0200 Subject: [PATCH] fix module css for index --- src/{index.module.scss => index.scss} | 0 src/index.tsx | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename src/{index.module.scss => index.scss} (100%) diff --git a/src/index.module.scss b/src/index.scss similarity index 100% rename from src/index.module.scss rename to src/index.scss diff --git a/src/index.tsx b/src/index.tsx index cfa5fc5..ad240fb 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2,7 +2,7 @@ import React from 'react'; import { createRoot } from 'react-dom/client'; import { Provider } from 'react-redux'; import App from './App'; -import './index.module.scss'; +import './index.scss'; import { store } from './store/store'; const container = document.getElementById('root');