Skip to content

Instantly share code, notes, and snippets.

@emanueleDiVizio
Last active May 28, 2020 19:54
Show Gist options
  • Save emanueleDiVizio/72aedddbd94712a689cd10792b16144f to your computer and use it in GitHub Desktop.
Save emanueleDiVizio/72aedddbd94712a689cd10792b16144f to your computer and use it in GitHub Desktop.
const useAudioPlayer = (fileName) => {
const playerRef = useRef(null);
useEffect(() => {
playerRef.current = loadPlayer(fileName);
return () => {
playerRef.current.destroy();
};
}, []);
return playerRef;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment