Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import { Howl, Howler } from "howler";
- const ExamplePage = () => {
- const playSound = () => {
- var sound = new Howl({
- src: ["https://localhosttt.b-cdn.net/elephant.mp3"],
- });
- sound.play();
- };
- return <button onClick={playSound}>Play Sound</button>;
- };
- export default ExamplePage;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement