This repository has been archived by the owner. It is now read-only.
Permalink
Cannot retrieve contributors at this time
12 lines (10 sloc)
343 Bytes
| import 'react-native/Libraries/Core/InitializeCore'; | |
| import './setup'; | |
| import 'process-nextick-args'; | |
| import { AppRegistry } from 'react-native'; | |
| import { startup } from 'browser-core-lumen-ios'; | |
| // set app global for debugging | |
| startup.then((app) => { | |
| global.app = app; | |
| }); | |
| AppRegistry.registerComponent('ExtensionApp', () => () => null); |