6 lines
167 B
TypeScript
Raw Normal View History

2021-08-11 10:13:38 +02:00
import { AppRegistry } from 'react-native'
import App from './src/App'
import { name as appName } from './app.json'
2021-07-03 19:51:30 +02:00
2021-08-11 10:13:38 +02:00
AppRegistry.registerComponent(appName, () => App)