Merge pull request #14 from ThomasRubini/b

fixed
This commit is contained in:
Djalim Simaila 2023-04-07 23:41:27 +02:00 committed by GitHub
commit c9b9f47d22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,4 +6,5 @@ import {AppRegistry} from 'react-native';
import App from './src/App';
import {name as appName} from './app.json';
Platform.OS === 'ios' ? AppRegistry.registerComponent('main', () => App) : AppRegistry.registerComponent(appName, () => App);
AppRegistry.registerComponent('main', () => App);
AppRegistry.registerComponent(appName, () => App);