Skip to content

Instantly share code, notes, and snippets.

@emanueleDiVizio
Last active May 28, 2020 20:14
Show Gist options
  • Select an option

  • Save emanueleDiVizio/ea60b7ccdc47788aab8d60b5cd910229 to your computer and use it in GitHub Desktop.

Select an option

Save emanueleDiVizio/ea60b7ccdc47788aab8d60b5cd910229 to your computer and use it in GitHub Desktop.
const CoolButton = () => {
const [play] = useAudioPlayer('filename.wav');
const onPress = () => play();
return (
<Button
title="Play!"
onPress={onPress}
/>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment