bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/screenshare/component.jsx

14 lines
317 B
React
Raw Normal View History

import React from 'react';
export default class ScreenshareComponent extends React.Component {
componentDidMount() {
this.props.presenterScreenshareHasStarted();
}
render() {
return (
2018-02-09 00:49:02 +08:00
<video id="screenshareVideo" style={{ maxHeight: '100%', width: '100%' }} autoPlay playsInline />
);
}
}