9 lines
157 B
JavaScript
9 lines
157 B
JavaScript
|
import { KeepAwake, registerRootComponent } from 'expo';
|
||
|
import App from '../../App';
|
||
|
|
||
|
if (__DEV__) {
|
||
|
KeepAwake.activate();
|
||
|
}
|
||
|
|
||
|
registerRootComponent(App);
|