https://codepen.io/mrheydar/pen/wvaQxpY

Tell us what’s happening:

I have problem in User Story #4

Your code so far

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36.

Challenge: Build a Drum Machine

Link to the challenge:

Hello there.

Test #4 is expecting something similar to this:

const DrumPad = (props) => {
  return(
    <div class="drum-pad">
     <audio id="props.id" class="clip" src={props.source}></audio>
    </div>
  )
}

Obviously, there are many ways to do this, but the HTML elements are what the tests are after.

Hope this helps