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