19 lines
310 B
TypeScript
19 lines
310 B
TypeScript
import React from 'react';
|
|
import { StyleSheet, Text, View } from 'react-native';
|
|
|
|
export function HelloWave() {
|
|
return (
|
|
<View>
|
|
<Text style={styles.text}>👋</Text>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
text: {
|
|
fontSize: 28,
|
|
lineHeight: 32,
|
|
marginTop: -6,
|
|
},
|
|
});
|