about summary refs log tree commit diff
path: root/src/index.js
blob: 45a06f40a586eaba78e5691e8bc44caf3c21d2e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
/**
 * @format
 */

import {AppRegistry} from 'react-native'
import App from './App'

AppRegistry.registerComponent('App', () => App)

AppRegistry.runApplication('App', {
  rootTag: document.getElementById('root'),
})