react-native-config/Example/index.js

10 lines
183 B
JavaScript
Raw Normal View History

2019-08-29 22:35:01 +00:00
/**
* @format
*/
import {AppRegistry} from 'react-native';
2017-12-05 05:34:37 +00:00
import App from './App';
2019-08-29 22:35:01 +00:00
import {name as appName} from './app.json';
2017-12-05 05:34:37 +00:00
2019-08-29 22:35:01 +00:00
AppRegistry.registerComponent(appName, () => App);