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

export default beep;