Massive/index.js

8 lines
240 B
JavaScript

import {AppRegistry} from 'react-native';
import 'react-native-gesture-handler';
import 'react-native-sqlite-storage';
import App from './App';
import {name as appName} from './app.json';
AppRegistry.registerComponent(appName, () => App);