React Native & react-native-web-player & React Native for Web
import React, { Component } from 'react'import { AppRegistry, StyleSheet, Text, View,} from 'react-native'class App extends Component { render() { return ( Welcome to React Native! ) }}const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', alignItems: 'center', backgroundColor: '#F5FCFF', }, welcome: { fontSize: 20, textAlign: 'center', margin: 10, },})// no need below line if use react-native -create-appAppRegistry.registerComponent('App', () => App)