diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2025-04-27 23:17:46 -0600 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2025-04-27 23:17:46 -0600 |
commit | 1ac28532969429f90fc3b4fe666e58ace807d17a (patch) | |
tree | a67d449b93a4656bf8be902d70142ee3ad1fe1bd /client/src/index.js | |
parent | 03183c0ca28abc968d77ed842a387a1da73af61b (diff) |
fix imports
Diffstat (limited to 'client/src/index.js')
-rw-r--r-- | client/src/index.js | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/client/src/index.js b/client/src/index.js index bebdf88..92a3918 100644 --- a/client/src/index.js +++ b/client/src/index.js @@ -1,17 +1,13 @@ import React from 'react'; import ReactDOM from 'react-dom/client'; -import './index.css'; +import './styles/index.css'; import App from './App'; -import reportWebVitals from './reportWebVitals'; -import { initVChartArcoTheme } from '@visactor/vchart-arco-theme'; +import reportWebVitals from './utils/reportWebVitals'; import { BrowserRouter } from 'react-router-dom';import { ConfigProvider } from '@arco-design/web-react'; import enUS from '@arco-design/web-react/es/locale/en-US'; -initVChartArcoTheme({ - defaultMode: 'light', - isWatchingMode: true -}); + const root = ReactDOM.createRoot(document.getElementById('root')); root.render( |