Files
react-native-debug-console/packages/demo/Entry.js
2019-07-05 23:43:35 +02:00

11 lines
195 B
JavaScript

import { registerRootComponent } from 'expo';
import { activateKeepAwake } from 'expo-keep-awake';
import App from './App';
if (__DEV__) {
activateKeepAwake();
}
registerRootComponent(App);