Skip to content

Instantly share code, notes, and snippets.

@balascript
Created August 15, 2020 20:51
Show Gist options
  • Save balascript/b021c7a3977285a398cf79399f1cd534 to your computer and use it in GitHub Desktop.
Save balascript/b021c7a3977285a398cf79399f1cd534 to your computer and use it in GitHub Desktop.
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