You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
401 B
14 lines
401 B
2 years ago
|
import 'react-app-polyfill/ie9'; // For IE 9-11 support
|
||
|
import 'react-app-polyfill/stable';
|
||
|
import './polyfill'
|
||
|
import React from 'react';
|
||
|
import ReactDOM from 'react-dom';
|
||
|
import './index.css';
|
||
|
import App from './App';
|
||
|
import * as serviceWorker from './serviceWorker';
|
||
|
import "antd/dist/antd.css";
|
||
|
|
||
|
ReactDOM.render(<App />, document.getElementById('root'));
|
||
|
|
||
|
serviceWorker.unregister();
|