Skip to content

nightflash/react-native-redux-persist

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

react-native-redux-persist

Simple, lightweight persist component for react-native.

Installation

Without persist:

import {createStore} from 'redux'

import reducer from './reducer';

const store = createStore(reducer);

export default store;

With persist:

import {createStore} from 'redux'

import reducer from './reducer';

const store = createStore(reducer);

export const persist = persistStore(store, reducer);

export default store;

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published