Backup-bdg's picture
Upload 565 files
b59aa07 verified
raw
history blame contribute delete
144 Bytes
const beep = () => {
const snd = new Audio("/beep.wav");
snd.addEventListener("canplaythrough", () => snd.play());
};
export default beep;