You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
586 B
24 lines
586 B
require('../sass/reset.scss');
|
|
|
|
import { render } from 'react-dom';
|
|
import { createStore, combineReducers } from 'redux'
|
|
import { Provider } from 'react-redux';
|
|
|
|
import App from './app/App';
|
|
import * as reducers from './app/Reducers';
|
|
|
|
const combinedReducers = combineReducers({
|
|
mode: reducers.modeReducer,
|
|
blink: reducers.blinkReducer,
|
|
values: reducers.valuesReducer,
|
|
muncher: reducers.muncherReducer
|
|
});
|
|
|
|
const store = createStore(combinedReducers);
|
|
|
|
ReactDOM.render(
|
|
<Provider store={store}>
|
|
<App />
|
|
</Provider>,
|
|
document.getElementById('app')
|
|
);
|
|
|