-
In [node_modules/redux-persist/lib/persistStore.js.flow:94:30](https://github.com/rt2zz/redux-persist/blob/master/src/persistStore.js), persistor is defined as
```
let persistor: Persistor = {
…
-
# Is there any issue with my store setup?
https://gist.github.com/MuttakinHasib/c3ad30fdfcc085cf5e4a447f409f17cc
### store.ts
```ts
import {
Action,
AnyAction,
CombinedState,
confi…
-
I'm experiencing issues with the current implementation related to the storage of internal state:
The state machine should ideally be stateless, as the only state present within a state machine is th…
-
Hey guys,
Great solve for the persistence problem, although I have an issue.
```
```
When the app is rendered from the server, the react component tree is already created and t…
-
```
import { combineReducers } from 'redux';
import { persistStore, persistReducer } from 'redux-persist';
import storage from 'redux-persist/lib/storage';
import configureStore from './config';…
-
import React, { Component } from "react";
import { Platform, StyleSheet, Text, View } from "react-native";
import { Provider } from "react-redux";
import { PersistGate } from "redux-persist/es/inte…
-
In development environment, I noticed that with each reload that the app was slow. So I did some testing, and by removing PersistGate, the app loads easily, and without any slowness.
**cfgStore:**
…
-
Hi,
Thanks for your delication to this project, but I have problem with the group that has the top post, I just scraped max 21 post in this group. So, do you have the solution for this? Thanks in adv…
-
_______________________________________________________________
_______________________________________________________________
**This is my configuation in store.ts :**
__________________________…
-
I was trying to hook up redux-persist on react-native project. The config of persistor is as follows:
```
...
import storage from "redux-persist/es/storage";
import { persistStore, persistReduce…