mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-25 14:22:14 +03:00
9 lines
293 B
JavaScript
9 lines
293 B
JavaScript
// eslint-disable-next-line
|
|
import { Alert } from 'react-native';
|
|
import App from './src/index';
|
|
|
|
if (__DEV__) {
|
|
import('./reactotron-config').then(() => { Alert.alert("reatotron working"); console.log('Reactotron Configured')}).catch((err)=>Alert.alert(err.message));
|
|
}
|
|
|
|
export default App; |