10 lines
236 B
JavaScript
10 lines
236 B
JavaScript
/**
|
|
* @format
|
|
*/
|
|
|
|
import {AppRegistry} from 'react-native';
|
|
import App from './src/App';
|
|
import {name as appName} from './app.json';
|
|
|
|
AppRegistry.registerComponent('main', () => App);
|
|
AppRegistry.registerComponent(appName, () => App); |