#root
View Compiled
const { } = React;
function SoundPlayer() {
const play = () => {
// ???
};
const pause = () => {
// ???
};
return (
<div>
<audio src="https://www.bensound.com/bensound-music/bensound-creativeminds.mp3">
Your browser does not support the
<code>audio</code> element.
</audio>
<button onClick={play}> Play </button>
<button onClick={pause}> Pause </button>
</div>
);
}
ReactDOM.render(<SoundPlayer/>, document.getElementById("root"));
View Compiled
This Pen doesn't use any external CSS resources.