Last active
February 2, 2020 18:44
-
-
Save georgeperry1/4b38638e55ec3b1bcde6a1df7b10f7dc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import { WaveformContianer, Wave, PlayButton } from './Waveform.styled'; | |
class Waveform extends Component { | |
render() { | |
return ( | |
<WaveformContianer> | |
<PlayButton> // This is a <button /> | |
Play | |
</PlayButton> | |
<Wave id="waveform" /> // This is a <div /> | |
<audio id="track" /> | |
</WaveformContianer> | |
); | |
} | |
}; | |
export default Waveform; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment