Initial commit
This commit is contained in:
23
web/src/index.js
Normal file
23
web/src/index.js
Normal file
@ -0,0 +1,23 @@
|
||||
import React from 'react';
|
||||
import ReactDOM from 'react-dom';
|
||||
import './index.css';
|
||||
import App from './App';
|
||||
import * as serviceWorker from './serviceWorker';
|
||||
import zhCN from 'antd/es/locale-provider/zh_CN';
|
||||
import {ConfigProvider} from 'antd';
|
||||
import {HashRouter as Router} from "react-router-dom";
|
||||
|
||||
ReactDOM.render(
|
||||
<ConfigProvider locale={zhCN}>
|
||||
<Router>
|
||||
<App/>
|
||||
</Router>
|
||||
</ConfigProvider>,
|
||||
document.getElementById('root')
|
||||
);
|
||||
|
||||
// If you want your app to work offline and load faster, you can change
|
||||
// unregister() to register() below. Note this comes with some pitfalls.
|
||||
// Learn more about service workers: https://bit.ly/CRA-PWA
|
||||
serviceWorker.unregister();
|
||||
|
Reference in New Issue
Block a user