16 lines
335 B
JavaScript
16 lines
335 B
JavaScript
|
import React from 'react';
|
||
|
import { render } from 'react-dom';
|
||
|
import { Provider } from 'react-redux';
|
||
|
import configureStore from './store/configureStore';
|
||
|
import App from './dapp';
|
||
|
import './dapp.css';
|
||
|
|
||
|
const store = configureStore();
|
||
|
|
||
|
render(
|
||
|
<Provider store={store}>
|
||
|
<App />
|
||
|
</Provider>,
|
||
|
document.getElementById('app')
|
||
|
);
|