15 lines
208 B
JavaScript
Executable File
15 lines
208 B
JavaScript
Executable File
import React, { PropTypes } from 'react';
|
|
|
|
export default class PollDrawComponent extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<g></g>
|
|
);
|
|
}
|
|
}
|
|
|