Files
encoach_frontend/src/utils/sound.ts
2024-01-23 11:45:32 +00:00

11 lines
210 B
TypeScript

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