sbjw
2025-12-02 e567a28d95638e12212ab42fb7a3574bfebe9385
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import React from 'react';
import ReactDOM from 'react-dom';
 
import 'iclient3d-plot-diy/dist/index.css'
import 'antd/dist/antd.css'
import App from './App';  // 导入你的主组件
 
// 渲染到 DOM
ReactDOM.render(
    <React.StrictMode>
        <App/>
    </React.StrictMode>,
    document.getElementById('root')
);