Files
encoach_frontend/src/utils/sound.ts
2023-11-29 20:26:48 +00:00

11 lines
200 B
TypeScript

import {Howl, Howler} from "howler";
export type Sound = "check" | "sent";
export const playSound = (path: Sound) => {
const sound = new Howl({
src: [`audio/${path}.mp3`],
});
sound.play();
};