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