trc-client-core
Version:
The core of the TRC Client
15 lines (12 loc) • 338 B
JSX
import React from 'react';
import Video from 'trc-client-core/src/components/Video';
var VideoView = React.createClass({
displayName: 'VideoView',
render() {
return <div>
<Video id={this.props.params.id} type="viewer"/>
{this.props.children}
</div>;
}
});
module.exports = VideoView;