lbry-desktop/js/page/watch.js

20 lines
337 B
JavaScript
Raw Normal View History

2016-04-21 11:51:27 +02:00
var videoStyle = {
width: '100%',
height: '100%',
backgroundColor: '#000'
};
var WatchPage = React.createClass({
propTypes: {
name: React.PropTypes.string,
},
2016-04-21 11:51:27 +02:00
render: function() {
return (
<main>
<video style={videoStyle} src={"/view?name=" + this.props.name} controls />
2016-04-21 11:51:27 +02:00
</main>
);
}
});