14 lines
297 B
JavaScript
Executable File
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>
|
|
);
|
|
}
|
|
}
|