Anish Kumar
Anish Kumar
Sure! I am working on adding resources and examples to make things as clear as possible. Will be adding a couple of examples (and some posts) of varying complexity this...
The readme has been updated with a list of few live examples! I am posting those here as well for quick reference, but since this list would keep evolving over...
@hereisnaman That would be great! At this point it makes more sense to build a dedicated static documentation site for redux-box, instead of just using links for codesandbox. I'm already...
Flow and typescript examples are definitely on my mind. Thanks for the heads up!
Have been working on the typescript migration (https://github.com/anish000kumar/redux-box/tree/typescript-migration). It's early TS version, feel free to submit PRs to make it type-friendly.
@abtinr you can import the generators from sagas.js file like so: ```javascript import { createSagas } from "redux-box" export const sagas = { 'REQUEST_SOMETHING': function* () { //... } }...