Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Backup-bdg
/
OpenHands
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
OpenHands
/
frontend
/
src
/
utils
/
beep.tsx
Backup-bdg
Upload 565 files
b59aa07
verified
8 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
144 Bytes
const
beep
= (
) => {
const
snd =
new
Audio
(
"/beep.wav"
);
snd.
addEventListener
(
"canplaythrough"
,
() =>
snd.
play
());
};
export
default
beep;