Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ar08
/
zzz
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
zzz
/
frontend
/
src
/
utils
/
beep.tsx
ar08
Upload 1040 files
246d201
verified
2 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
150 Bytes
const
beep
= (
) => {
const
snd =
new
Audio
(
"/beep.wav"
);
snd.
addEventListener
(
"canplaythrough"
,
() =>
snd.
play
());
};
export
default
beep;