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

15 lines
208 B
React
Raw Normal View History

import React, { PropTypes } from 'react';
export default class PollDrawComponent extends React.Component {
constructor(props) {
super(props);
}
render() {
return (
<g></g>
);
}
}