aretherecookies-mobile/index.js

10 lines
186 B
JavaScript
Raw Normal View History

2019-09-21 15:45:07 +00:00
/**
* @format
*/
import {AppRegistry} from 'react-native';
import {name as appName} from './app.json';
import App from './js/App';
AppRegistry.registerComponent(appName, () => App);