Created
August 15, 2020 20:51
-
-
Save balascript/b021c7a3977285a398cf79399f1cd534 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const AnotherCoffeeComponent = props => { | |
const { coffeeBrewer: { brew } } = props; | |
return ( | |
<TouchableView | |
onPress={brew} | |
> | |
<Text>Press me!</Text> | |
</TouchableView> | |
); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment