From 9b54bad317b69d17134ddc27a5570984fba15826 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Sun, 27 Apr 2025 12:03:11 -0600 Subject: initial commit - client --- client/src/index.js | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 client/src/index.js (limited to 'client/src/index.js') diff --git a/client/src/index.js b/client/src/index.js new file mode 100644 index 0000000..10d3d73 --- /dev/null +++ b/client/src/index.js @@ -0,0 +1,23 @@ +import React from 'react'; +import ReactDOM from 'react-dom/client'; +import './index.css'; +import App from './App'; +import reportWebVitals from './reportWebVitals'; +import { initVChartArcoTheme } from '@visactor/vchart-arco-theme'; + +initVChartArcoTheme({ + defaultMode: 'light', + isWatchingMode: true +}); + +const root = ReactDOM.createRoot(document.getElementById('root')); +root.render( + + + +); + +// If you want to start measuring performance in your app, pass a function +// to log results (for example: reportWebVitals(console.log)) +// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals +reportWebVitals(); -- cgit v1.2.3