Fix typo on AsyncStorage section

This commit is contained in:
Gonzalo Aguirre 2020-02-17 11:21:35 -03:00 committed by GitHub
parent 737691d132
commit 27a988c168
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -236,14 +236,14 @@ To avoid that now you have to manually pass asyncStorage to React Native Storybo
Solution:
- Use `require('@react-native-community/async-storage').AsyncStorage` for React Native v0.59 and above.
- Use `require('@react-native-community/async-storage').default` for React Native v0.59 and above.
- Use `require('react-native').AsyncStorage` for React Native v0.58 or below.
- Use `null` to disable Async Storage completely.
```javascript
getStorybookUI({
...
asyncStorage: require('@react-native-community/async-storage').AsyncStorage || require('react-native').AsyncStorage || null
asyncStorage: require('@react-native-community/async-storage').default || require('react-native').AsyncStorage || null
});
```