ecency-mobile/reactotron-config.ts
Nouman Tahir c8e8c456a8 lint
2022-10-17 13:11:23 +05:00

14 lines
559 B
TypeScript

import AsyncStorage from '@react-native-async-storage/async-storage';
import Reactotron from 'reactotron-react-native';
import { reactotronRedux } from 'reactotron-redux';
const reactotron = Reactotron.setAsyncStorageHandler(AsyncStorage) // AsyncStorage would either come from `react-native` or `@react-native-community/async-storage` depending on where you get it from
.configure({
name: 'Ecency',
})
.useReactNative() // add all built-in react native plugins
.use(reactotronRedux())
.connect(); // let's connect!
export default reactotron;