2016-05-07 04:15:47 +08:00
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
export default class DeskshareComponent extends React.Component {
|
|
|
|
render() {
|
|
|
|
return (
|
2016-05-27 04:03:45 +08:00
|
|
|
<video id="webcam" style={{ height: '100%', width: '100%', }} controls/>
|
2016-05-07 04:15:47 +08:00
|
|
|
);
|
|
|
|
}
|
|
|
|
};
|