Skip to content

Instantly share code, notes, and snippets.

@arqex
Last active January 3, 2016 13:26
Show Gist options
  • Save arqex/20e6bc96640b9d9970b8 to your computer and use it in GitHub Desktop.
Save arqex/20e6bc96640b9d9970b8 to your computer and use it in GitHub Desktop.
var Video = React.createClass({
render: function() {
return (
<video ref="video" src={ this.props.src } />
);
},
getState: function(){
return {
time: this.refs.video.currentTime,
paused: this.refs.video.paused
// ...
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment