Skip to content

Commit

Permalink
fix(docs): Install AsyncStorage as dependency
Browse files Browse the repository at this point in the history
Without AsyncStorage dependency, the instruction in "Step 2 - Initialization" simply doesn´t work if the developer app doesn´t already use AsyncStorage, since it does ´Reactotron.setAsyncStorageHandler(AsyncStorage)´

If the developer app already uses AsyncStorage, this is harmless.
  • Loading branch information
carmeli-tamir committed May 6, 2024
1 parent e41f128 commit fa3925c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/quick-start/react-native.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ Unzip & run.
Add Reactotron on your React Native project as a dev dependency.

```
npm i --save-dev reactotron-react-native
npm i --save-dev reactotron-react-native @react-native-async-storage/async-storage
```

```
yarn add reactotron-react-native -D
yarn add reactotron-react-native @react-native-async-storage/async-storage -D
```

#### **Step 2 - Initialization**
Expand Down

0 comments on commit fa3925c

Please sign in to comment.