Skip to content

Instantly share code, notes, and snippets.

@eyalcohen4
Last active December 23, 2017 12:44
Show Gist options
  • Save eyalcohen4/4df51a3332979e1618bc6a3fec05e421 to your computer and use it in GitHub Desktop.
Save eyalcohen4/4df51a3332979e1618bc6a3fec05e421 to your computer and use it in GitHub Desktop.
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