mirror of
https://github.com/leporello-js/leporello-js
synced 2026-01-14 05:14:28 -08:00
12 lines
258 B
JavaScript
12 lines
258 B
JavaScript
import App from './components/App.js'
|
|
import rootReducer from './reducers/index.js'
|
|
|
|
const h = React.createElement
|
|
|
|
const store = Redux.createStore(rootReducer)
|
|
|
|
ReactDOM.render(
|
|
h(ReactRedux.Provider, {store}, h(App)),
|
|
document.getElementById('root')
|
|
)
|