This repository has been archived on 2023-12-20. You can view files and clone it, but cannot push or open issues/pull-requests.
|
/**
|
|
* @format
|
|
*/
|
|
|
|
import {AppRegistry} from 'react-native';
|
|
import App from './src/App';
|
|
import {name as appName} from './app.json';
|
|
|
|
AppRegistry.registerComponent(appName, () => App);
|