Injecting Dependencies
Exposing Your Redux Store
import { Provider } from 'redux'
import { withEffects } from 'refract-rxjs'
import configureStore from './configureStore'
import App from './components/App'
const store = configureStore()
const AppWithEffects = withEffects(aperture, { handler })(App)
ReactDOM.render(
<Provider store={store}>
<AppWithEffects store={store} />
</Provider>,
document.getElementById('root')
)Other Dependencies
Passing Dependencies To Children
Last updated