mirror of
https://github.com/morten-olsen/react-native-debug-console.git
synced 2026-02-08 00:36:26 +01:00
11 lines
195 B
JavaScript
11 lines
195 B
JavaScript
import { registerRootComponent } from 'expo';
|
|
import { activateKeepAwake } from 'expo-keep-awake';
|
|
|
|
import App from './App';
|
|
|
|
if (__DEV__) {
|
|
activateKeepAwake();
|
|
}
|
|
|
|
registerRootComponent(App);
|