You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would love to use this amazing tool, but I'm not able to use with React+Typescript (I've just started to learn them). Tried multiple times, but I've encountered with 2 main error.
I'm not able to import from my folder the mp3 as I get this TS error : Cannot find module or its corresponding type declarations.ts(2307)
And after assigning audio its not playing
code......................
import useSound from "use-sound"; import notificationSoundmp3 from "../../Utils/assets/sound/notification.mp3";
Hello,
I would love to use this amazing tool, but I'm not able to use with React+Typescript (I've just started to learn them). Tried multiple times, but I've encountered with 2 main error.
I'm not able to import from my folder the mp3 as I get this TS error : Cannot find module or its corresponding type declarations.ts(2307)
And after assigning audio its not playing
code......................
import useSound from "use-sound";
import notificationSoundmp3 from "../../Utils/assets/sound/notification.mp3";
const [play] = useSound(notificationSoundmp3, { volume: 0.5 });
const handleTestButton = () => { setOpenTestModal(!openTestModal); play(); };
I hope someone can help me
The text was updated successfully, but these errors were encountered: