广州市综治平台前端
xusd
1 days ago e8071c7d6f7aa6ac0d5522c59a52ee5e187a4b16
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 * @Company: hugeInfo
 * @Author: ldh
 * @Date: 2022-02-14 11:54:07
 * @LastEditTime: 2022-08-04 16:42:25
 * @LastEditors: ldh
 * @Version: 1.0.0
 * @Description: 入口文件
 */
import React from 'react';
import ReactDOM from 'react-dom';
import reportWebVitals from './reportWebVitals';
import Routers from './router/router';
import './styles/views.less';
 
ReactDOM.render(
    <React.StrictMode>
        <Routers />
    </React.StrictMode>,
    document.getElementById('root')
);
 
// 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();