bsky-app/src/index.js
2022-06-09 13:03:25 -05:00

12 lines
218 B
JavaScript

/**
* @format
*/
import {AppRegistry} from 'react-native'
import App from './App'
AppRegistry.registerComponent('App', () => App)
AppRegistry.runApplication('App', {
rootTag: document.getElementById('root'),
})