We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 35b3319 + 47a956e commit 5acf34bCopy full SHA for 5acf34b
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "redux-storage-engine-reactnativeasyncstorage",
3
- "version": "1.0.5",
+ "version": "1.0.6",
4
"description": "react-native/AsyncStorage based engine for redux-storage",
5
"main": "build/index.js",
6
"scripts": {
@@ -41,5 +41,8 @@
41
"eslint-plugin-mocha-only": "0.0.3",
42
"mocca": "^1.0.3",
43
"release-it": "^2.3.1"
44
+ },
45
+ "dependencies": {
46
+ "@react-native-community/async-storage": "^1.4.0"
47
}
48
src/index.js
@@ -1,4 +1,4 @@
-import { AsyncStorage } from 'react-native';
+import AsyncStorage from '@react-native-community/async-storage';
export default (key) => ({
load() {
0 commit comments