Advertisement
Guest User

Untitled

a guest
Mar 15th, 2022
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import { Howl, Howler } from "howler";
  2.  
  3. const ExamplePage = () => {
  4.   const playSound = () => {
  5.     var sound = new Howl({
  6.       src: ["https://localhosttt.b-cdn.net/elephant.mp3"],
  7.     });
  8.  
  9.     sound.play();
  10.   };
  11.  
  12.   return <button onClick={playSound}>Play Sound</button>;
  13. };
  14.  
  15. export default ExamplePage;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement