frontend/src/index.js

19 lines
537 B
JavaScript
Raw Normal View History

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';
import 'zent/css/index.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();