import React from 'react'; import { Text, StyleSheet, TouchableOpacity } from 'react-native'; const MyText = ({ yournameherefromprops, onPress }) => { return ( Hello, {yournameherefromprops} ); }; const styles = StyleSheet.create({ redText: { color: 'red', fontSize: 24, }, }); export default MyText;