Massive/index.js

8 lines
240 B
JavaScript
Raw Normal View History

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