mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-23 05:13:04 +03:00
lint
This commit is contained in:
parent
ef9756cb2f
commit
c8e8c456a8
@ -1,14 +1,13 @@
|
|||||||
import AsyncStorage from '@react-native-async-storage/async-storage'
|
import AsyncStorage from '@react-native-async-storage/async-storage';
|
||||||
import Reactotron from 'reactotron-react-native'
|
import Reactotron from 'reactotron-react-native';
|
||||||
import { reactotronRedux } from 'reactotron-redux'
|
import { reactotronRedux } from 'reactotron-redux';
|
||||||
|
|
||||||
const reactotron = Reactotron
|
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
|
||||||
.setAsyncStorageHandler(AsyncStorage) // AsyncStorage would either come from `react-native` or `@react-native-community/async-storage` depending on where you get it from
|
|
||||||
.configure({
|
.configure({
|
||||||
name: "Ecency"
|
name: 'Ecency',
|
||||||
})
|
})
|
||||||
.useReactNative() // add all built-in react native plugins
|
.useReactNative() // add all built-in react native plugins
|
||||||
.use(reactotronRedux())
|
.use(reactotronRedux())
|
||||||
.connect() // let's connect!
|
.connect(); // let's connect!
|
||||||
|
|
||||||
export default reactotron;
|
export default reactotron;
|
Loading…
Reference in New Issue
Block a user