/*
|
* @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();
|