27 lines
448 B
TypeScript
Raw Normal View History

2021-02-19 16:07:53 +01:00
import * as React from 'react';
import { StyleSheet, View, Text } from 'react-native';
export default function App() {
return (
<View style={styles.container}>
2021-02-19 16:44:00 +01:00
<Text>Hello World!</Text>
2021-02-19 16:07:53 +01:00
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
2021-02-19 18:02:24 +01:00
backgroundColor: 'white',
2021-02-19 16:07:53 +01:00
},
box: {
width: 60,
height: 60,
marginVertical: 20,
},
});