8 lines
454 B
JavaScript
8 lines
454 B
JavaScript
|
import AsyncStorage from '@react-native-community/async-storage';
|
||
|
import Reactotron from 'reactotron-react-native'
|
||
|
|
||
|
Reactotron
|
||
|
.setAsyncStorageHandler(AsyncStorage) // AsyncStorage would either come from `react-native` or `@react-native-community/async-storage` depending on where you get it from
|
||
|
.configure() // controls connection & communication settings
|
||
|
.useReactNative() // add all built-in react native plugins
|
||
|
.connect(); // let's connect!
|