application-amicale/index.js

11 lines
240 B
JavaScript
Raw Normal View History

/**
* @format
*/
import {AppRegistry} from 'react-native';
2020-04-25 15:09:08 +02:00
import App from './App';
import {name as appName} from './app.json';
2020-04-25 15:09:08 +02:00
// eslint-disable-next-line flowtype/require-return-type
AppRegistry.registerComponent(appName, () => App);