Added the ability to generate Listening exams as well

This commit is contained in:
Tiago Ribeiro
2023-11-29 17:19:47 +00:00
parent c90234cefc
commit 1f0e5f4a08
6 changed files with 171 additions and 25 deletions

9
src/utils/sound.ts Normal file
View File

@@ -0,0 +1,9 @@
import {Howl, Howler} from "howler";
export const checkSound = () => {
const sound = new Howl({
src: ["audio/check.mp3"],
});
sound.play();
};