zzz / frontend /src /utils /beep.tsx
ar08's picture
Upload 1040 files
246d201 verified
raw
history blame contribute delete
150 Bytes
const beep = () => {
const snd = new Audio("/beep.wav");
snd.addEventListener("canplaythrough", () => snd.play());
};
export default beep;