bsky-app/src/index.js

13 lines
218 B
JavaScript
Raw Normal View History

2022-06-08 22:52:12 +02:00
/**
* @format
*/
2022-06-09 20:03:25 +02:00
import {AppRegistry} from 'react-native'
import App from './App'
2022-06-08 22:52:12 +02:00
2022-06-09 20:03:25 +02:00
AppRegistry.registerComponent('App', () => App)
2022-06-08 22:52:12 +02:00
AppRegistry.runApplication('App', {
rootTag: document.getElementById('root'),
2022-06-09 20:03:25 +02:00
})