41 lines
1.4 KiB
TypeScript
41 lines
1.4 KiB
TypeScript
import React from 'react';
|
|
import ReactDOM from 'react-dom/client';
|
|
import 'antd/dist/reset.css';
|
|
import './index.css';
|
|
import reportWebVitals from './reportWebVitals';
|
|
import {Provider} from 'react-redux';
|
|
import {store, persistor} from './models/store';
|
|
import {RouterProvider} from "react-router-dom";
|
|
import CustomRouter from "./router/router";
|
|
import {PersistGate} from 'redux-persist/integration/react'
|
|
import {ConfigProvider} from "antd";
|
|
import zhCN from 'antd/locale/zh_CN';
|
|
|
|
const root = ReactDOM.createRoot(
|
|
document.getElementById('root') as HTMLElement
|
|
);
|
|
root.render(
|
|
<React.StrictMode>
|
|
<Provider store={store}>
|
|
<PersistGate loading={null} persistor={persistor}>
|
|
<ConfigProvider locale={zhCN} theme={{
|
|
token: {
|
|
colorPrimary: "#1890ff",
|
|
colorSuccess: "#52c41a",
|
|
colorWarning: "#faad14",
|
|
colorInfo: "#1890ff",
|
|
wireframe: false
|
|
}
|
|
}}>
|
|
<CustomRouter />
|
|
</ConfigProvider>
|
|
</PersistGate>
|
|
</Provider>
|
|
</React.StrictMode>
|
|
);
|
|
|
|
// 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();
|