bsky-app/index.web.js

14 lines
314 B
JavaScript

// index.web.js
import {AppRegistry} from 'react-native'
import App from './src/App'
import {name as appName} from './src/app.json'
// register the app
AppRegistry.registerComponent(appName, () => App)
AppRegistry.runApplication(appName, {
initialProps: {},
rootTag: document.getElementById('app-root'),
})