From 1ac28532969429f90fc3b4fe666e58ace807d17a Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Sun, 27 Apr 2025 23:17:46 -0600 Subject: fix imports --- client/src/index.js | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'client/src/index.js') 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( -- cgit v1.2.3