Created
August 15, 2017 18:12
-
-
Save haldarmahesh/1a249300cd9bb19dfd16b8e0d98a9257 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
class ContraMusicPlayer extends React.Component | |
constructor(props) { | |
super(props); | |
this.state = { | |
volume: 70, | |
status: 'pause' | |
} | |
} | |
ContraMusicPlayer.defaultProps = { | |
theme: 'dark' | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment