13 lines
222 B
JavaScript
13 lines
222 B
JavaScript
|
/**
|
||
|
* @format
|
||
|
*/
|
||
|
|
||
|
import {AppRegistry} from 'react-native';
|
||
|
import App from './App';
|
||
|
|
||
|
AppRegistry.registerComponent('App', () => App);
|
||
|
|
||
|
AppRegistry.runApplication('App', {
|
||
|
rootTag: document.getElementById('root'),
|
||
|
});
|