Skip to content

Instantly share code, notes, and snippets.

@tuantvk
Created June 12, 2020 14:14
Show Gist options
  • Save tuantvk/7a45e92b61516e2d8d206aece822fc04 to your computer and use it in GitHub Desktop.
Save tuantvk/7a45e92b61516e2d8d206aece822fc04 to your computer and use it in GitHub Desktop.
const Button({
onPress,
label = 'Click me',
buttonStyle,
textColor,
}) => {
return (
<TouchableOpacity style={buttonStyle} onPress={onPress}>
<Text style={textColor}>{label}</Text>
</TouchableOpacity>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment