rsnext/examples/with-react-native-web/pages/index.js

21 lines
398 B
JavaScript
Raw Normal View History

import React from 'react'
import { StyleSheet, Text, View } from 'react-native'
const styles = StyleSheet.create({
container: {
alignItems: 'center',
2018-07-15 20:59:20 +02:00
flexGrow: 1,
justifyContent: 'center'
},
text: {
alignItems: 'center',
fontSize: 24
}
})
export default props => (
<View style={styles.container}>
<Text style={styles.text}>Welcome to Next.js!</Text>
</View>
)