Files
react-native-debug-console/demo/Entry.js

11 lines
195 B
JavaScript

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