This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
mobile-app/index.js

6 lines
179 B
JavaScript
Raw Permalink Normal View History

2021-04-03 09:52:26 +00:00
import { AppRegistry } from 'react-native';
import App from './src/screens/App';
2021-04-03 09:52:26 +00:00
import { name as appName } from './app.json';
AppRegistry.registerComponent(appName, () => App);