Skip to content

Instantly share code, notes, and snippets.

@arqex
Created January 3, 2016 13:08
Show Gist options
  • Save arqex/b98cc182831b1f216e8c to your computer and use it in GitHub Desktop.
Save arqex/b98cc182831b1f216e8c to your computer and use it in GitHub Desktop.
var VideoWrapper = React.createClass({
render: function() {
return (
<Video ref="video" src="path/to/my/video.mp4" />
);
},
componentDidMount: function() {
// Play the video
this.refs.video.playOrPause();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment