forked from huge/frontEnd/hugeDyh2.0

ldh
2022-02-17 ec9314d50a789dadc84fb5f98ade366f95b80589
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
/*
 * @Company: hugeInfo
 * @Author: ldh
 * @Date: 2022-02-14 11:54:07
 * @LastEditTime: 2022-02-17 11:20:21
 * @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';
 
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();