Closed tomkis closed 8 years ago
One option would be:
import { saga, mapSaga } from 'redux-elm'; function* onBoardingSaga() { } function* updater(appState) { yield saga(onBoardingSaga); return appState; } function* superUpdater(appState) { return yield* mapSaga(updater(appState), 'Nested'); }
Does this solve composition issues?
Solved in #14
One option would be:
Does this solve composition issues?