index.js
330 Bytes
import { AppRegistry, Platform } from 'react-native';
import App from './App';
import 'expo-asset';
AppRegistry.registerComponent('sangatalk', () => App);
if (Platform.OS === 'web') {
const rootTag = document.getElementById('root') || document.getElementById('main');
AppRegistry.runApplication('sangatalk', { rootTag });
}