File size: 150 Bytes
246d201
 
 
 
 
 
1
2
3
4
5
6
7
const beep = () => {
  const snd = new Audio("/beep.wav");
  snd.addEventListener("canplaythrough", () => snd.play());
};

export default beep;