var SoundPanel = React.createClass({ mute() { this.props.soundController.mute(); this.forceUpdate(); }, unMute() { this.props.soundController.unMute(); this.forceUpdate(); }, render() { let soundController = this.props.soundController; if (soundController.isMuted) { return (
  • Muted 
  • ); } else { return (
  • Unmuted 
  • ); } } });