You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
456 B
8 lines
456 B
import AsyncStorage from '@react-native-async-storage/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!
|