ClipSync-Mobile/index.js
2023-04-03 11:40:13 +02:00

9 lines
261 B
JavaScript

/**
* @format
*/
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);