2021-10-25 11:49:03 +08:00
|
|
|
import React from 'react';
|
|
|
|
import ReactDOM from 'react-dom';
|
|
|
|
import './index.css';
|
|
|
|
import App from './App';
|
|
|
|
import reportWebVitals from './reportWebVitals';
|
2021-10-25 17:45:14 +08:00
|
|
|
import 'zent/css/index.css';
|
2022-08-31 11:09:33 +08:00
|
|
|
import './icons/iconfont.css'
|
2021-10-25 11:49:03 +08:00
|
|
|
ReactDOM.render(
|
2021-10-26 16:01:18 +08:00
|
|
|
// <React.StrictMode>
|
2021-10-25 11:49:03 +08:00
|
|
|
<App />
|
2021-10-26 16:01:18 +08:00
|
|
|
// </React.StrictMode>
|
|
|
|
,
|
2021-10-25 11:49:03 +08:00
|
|
|
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();
|