Skip to content

Instantly share code, notes, and snippets.

@georgeperry1
Last active February 2, 2020 18:44
Show Gist options
  • Save georgeperry1/4b38638e55ec3b1bcde6a1df7b10f7dc to your computer and use it in GitHub Desktop.
Save georgeperry1/4b38638e55ec3b1bcde6a1df7b10f7dc to your computer and use it in GitHub Desktop.
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