15 lines
406 B
JavaScript
15 lines
406 B
JavaScript
import '@babel/polyfill';
|
|
import 'whatwg-fetch';
|
|
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import { Provider } from 'react-redux';
|
|
import store from './redux/store';
|
|
import '../less/index.less';
|
|
import SplashScreen from "./components/Tablet/SplashScreen";
|
|
|
|
const app = (
|
|
<Provider store={store}>
|
|
<SplashScreen />
|
|
</Provider>
|
|
);
|
|
ReactDOM.render(app, document.getElementById('root'));
|