upd import of css

This commit is contained in:
Nikolai Petukhov 2024-09-20 12:13:47 +03:00
parent 8c5af38e3c
commit 59f5335e52
2 changed files with 2 additions and 1 deletions

View File

@ -1,7 +1,6 @@
import React from 'react'; import React from 'react';
import { BrowserRouter } from 'react-router-dom'; import { BrowserRouter } from 'react-router-dom';
import "./index.css"
import { Dashboard } from './dashboard'; import { Dashboard } from './dashboard';
const App = () => { const App = () => {

View File

@ -2,6 +2,8 @@ import React from 'react';
import ReactDOM from 'react-dom/client'; import ReactDOM from 'react-dom/client';
import App from './app'; import App from './app';
import "./index.css"
export default () => <App/>; export default () => <App/>;