mirror of
https://github.com/status-im/react-native.git
synced 2025-02-23 22:58:19 +00:00
Reviewed By: cpojer Differential Revision: D14032447 fbshipit-source-id: b36c2e01b10341077bec7fca43a35e980e9c13ce
10 lines
183 B
JavaScript
10 lines
183 B
JavaScript
/**
|
|
* @format
|
|
*/
|
|
|
|
import {AppRegistry} from 'react-native';
|
|
import App from './App';
|
|
import {name as appName} from './app.json';
|
|
|
|
AppRegistry.registerComponent(appName, () => App);
|