1/** 2 * @format 3 */ 4 5import {AppRegistry} from 'react-native' 6import App from './App' 7 8AppRegistry.registerComponent('App', () => App) 9 10AppRegistry.runApplication('App', { 11 rootTag: document.getElementById('root'), 12})