Last active
December 23, 2017 12:44
-
-
Save eyalcohen4/4df51a3332979e1618bc6a3fec05e421 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
export default class App extends React.Component { | |
state = { | |
mute: false, | |
fullScreen: false, | |
shouldPlay: true, | |
} | |
handlePlayAndPause = () => { | |
this.setState((prevState) => ({ | |
shouldPlay: !prevState.shouldPlay | |
})); | |
} | |
// .... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment