Spaces:
Running
Running
File size: 274 Bytes
4fb0c68 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
// src/main.jsx
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App';
import './index.css';
import './chartSetup';
ReactDOM.createRoot(document.getElementById('root')).render(
<React.StrictMode>
<App />
</React.StrictMode>
);
|