diff --git a/reactotron-config.ts b/reactotron-config.ts index fa74d9f5c..973ff4fce 100644 --- a/reactotron-config.ts +++ b/reactotron-config.ts @@ -1,14 +1,13 @@ -import AsyncStorage from '@react-native-async-storage/async-storage' -import Reactotron from 'reactotron-react-native' -import { reactotronRedux } from 'reactotron-redux' +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 +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" + name: 'Ecency', }) .useReactNative() // add all built-in react native plugins .use(reactotronRedux()) - .connect() // let's connect! + .connect(); // let's connect! -export default reactotron; \ No newline at end of file +export default reactotron;