Massive/index.js

7 lines
197 B
JavaScript
Raw Normal View History

import {AppRegistry} from 'react-native'
import 'react-native-gesture-handler'
import App from './App'
import {name as appName} from './app.json'
2022-07-03 01:50:01 +00:00
AppRegistry.registerComponent(appName, () => App)