You'd still have to pass in options for whatever persistence addon you want to use, but that would be something like:
const store = configureStore({ reducer: rootReducer, middleware: [...getDefaultMiddleware(), myPersistenceMiddleware] })
[0] https://redux-toolkit.js.org/api/getDefaultMiddleware#includ...
You'd still have to pass in options for whatever persistence addon you want to use, but that would be something like:
Which is still shorter and easier to read than having to mess with `applyMiddleware` and `compose` yourself.[0] https://redux-toolkit.js.org/api/getDefaultMiddleware#includ...