index.js 276 B

123456789
  1. import { AppRegistry } from 'react-native';
  2. import App from './App';
  3. import { name as appName } from './app.json';
  4. AppRegistry.registerComponent(appName, () => App);
  5. AppRegistry.runApplication(appName, {
  6. initialProps: {},
  7. rootTag: document.getElementById('app-root')
  8. });