mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 17:41:06 +08:00
Fix typo on AsyncStorage section
This commit is contained in:
parent
737691d132
commit
27a988c168
@ -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
|
||||
});
|
||||
```
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user