From 59f5335e52f57fe0fa25628e9ffb4015d648b5b1 Mon Sep 17 00:00:00 2001 From: Nikolai Petukhov Date: Fri, 20 Sep 2024 12:13:47 +0300 Subject: [PATCH] upd import of css --- src/app.tsx | 1 - src/index.tsx | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app.tsx b/src/app.tsx index 043fa90..5188000 100644 --- a/src/app.tsx +++ b/src/app.tsx @@ -1,7 +1,6 @@ import React from 'react'; import { BrowserRouter } from 'react-router-dom'; -import "./index.css" import { Dashboard } from './dashboard'; const App = () => { diff --git a/src/index.tsx b/src/index.tsx index e362928..4a03c22 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2,6 +2,8 @@ import React from 'react'; import ReactDOM from 'react-dom/client'; import App from './app'; + +import "./index.css" export default () => ;