A simple utility to help with managing the Redux store.
ReactDOM.render(
<Provider store={StoreHelper.setApplication(app)}>
<MuiThemeProvider muiTheme={muiTheme}>
<App/>
</MuiThemeProvider>
</Provider>,
document.getElementById('root'));
You can then use the StoreHelper to fire actions if needed.
StoreHelper.dispatch(newItemAction());