Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
422 Bytes
import React from 'react';
import { render } from 'react-dom';
import { Provider } from 'react-redux';
import store from './store';
import App from './containers/';
import './unit/const';
import './control';
import { subscribeRecord } from './unit';
subscribeRecord(store); // 将更新的状态记录到localStorage
render(
<Provider store={store}>
<App />
</Provider>
, document.getElementById('root')
);