bigbluebutton-Github/bigbluebutton-html5/imports/ui/whiteboard/shapes/triangle/component.jsx
2016-05-17 16:43:19 -07:00

14 lines
297 B
JavaScript
Executable File

import React, { PropTypes } from 'react';
export default class TriangleDrawComponent extends React.Component {
constructor(props) {
super(props);
}
render() {
return (
<path style="" fill="" stroke="" d="" stroke-width="" stroke-linejoin=""></path>
);
}
}