Skip to content

Instantly share code, notes, and snippets.

@chetanraj
Created August 10, 2021 15:04
Show Gist options
  • Save chetanraj/6d6c1e756c65054d763aab3d9a29153f to your computer and use it in GitHub Desktop.
Save chetanraj/6d6c1e756c65054d763aab3d9a29153f to your computer and use it in GitHub Desktop.
useSound.js
import useSound from 'use-sound';
import switchOn from '../sounds/siwth-on.mp3';
const Swtich = () => {
const [play] = useSound(switchOn);
return <button onClick={play}>Toggle!</button>;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment