ecency-mobile/App.js

9 lines
293 B
JavaScript
Raw Normal View History

2022-10-17 15:24:58 +03:00
// eslint-disable-next-line
2022-10-18 14:24:27 +03:00
import { Alert } from 'react-native';
2022-10-17 15:24:58 +03:00
import App from './src/index';
2022-10-17 15:24:58 +03:00
if (__DEV__) {
2022-10-18 14:24:27 +03:00
import('./reactotron-config').then(() => { Alert.alert("reatotron working"); console.log('Reactotron Configured')}).catch((err)=>Alert.alert(err.message));
2022-10-17 15:24:58 +03:00
}
2022-10-18 14:24:27 +03:00
export default App;