A highlight on building React Native applications with an offline first pattern as presented on both the August 2017 Toronto React Meetup and DevTO's November 2017 Meetup.
persistStore, autoRehydrate } from "redux-persist"; const store = createStore( reducer, compose( applyMiddleware(), autoRehydrate() ) ) // in the root of your app persistStore(store, { storage: AsyncStorage });