We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
devhub is the project in which I am performing feasibility tests
branch: perf-cache
import { createStore, applyMiddleware, combineReducers } from '@wora/redux' import ReduxProvider from '@wora/redux/libs/react/ReduxProvider' const sagaMiddleware = createSagaMiddleware() const store = createStore( rootReducer, composeWithDevTools( applyMiddleware(bugsnagMiddleware, analyticsMiddleware, sagaMiddleware), ), undefined, { key: 'root', version: 2, //multiple: boolean, to save individual status keys //layers?: Array<Layer> //blacklist?: Array<string>, backward compatibility //whitelist?: Array<string>, backward compatibility //throttle?: number, backward compatibility //migrate?: (PersistedState, number) => Promise<PersistedState>, backward compatibility //stateReconciler?: false | StateReconciler<S>, backward compatibility } ) sagaMiddleware.run(rootSaga) <ReduxProvider store={store} loading={null}>
import { createStore, applyMiddleware, combineReducers } from '@wora/redux' import ReduxProvider from '@wora/redux/libs/react/ReduxProvider' const sagaMiddleware = createSagaMiddleware() const store = createStore( rootReducer, composeWithDevTools( applyMiddleware(bugsnagMiddleware, analyticsMiddleware, sagaMiddleware), ), ) sagaMiddleware.run(rootSaga) <ReduxProvider store={store} loading={null}>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
devhub is the project in which I am performing feasibility tests
branch: perf-cache
Examples Persist
Examples without Persist
The text was updated successfully, but these errors were encountered: