bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/whiteboard/slide/component.jsx

24 lines
520 B
React
Raw Normal View History

import React, { PropTypes } from 'react';
export default class Slide extends React.Component {
constructor(props) {
super(props);
}
render() {
return (
<g>
{this.props.currentSlide ?
<image x="0" y="0"
width={this.props.currentSlide.slide.width}
height={this.props.currentSlide.slide.height}
xlinkHref={this.props.currentSlide.slide.img_uri}
strokeWidth="0.8"
>
</image>
2016-06-03 06:09:28 +08:00
: null }
</g>
);
}
}