Svg锚点

This commit is contained in:
tengge1 2019-12-07 12:38:34 +08:00
parent 76bba2cf01
commit 0f73736bd5
4 changed files with 17 additions and 2 deletions

View File

@ -941,5 +941,6 @@
"Input marker name:": "输入标注名称",
"Marker name": "标注名称",
"Enable Hover": "启用高亮",
"Hover Color": "高亮颜色"
"Hover Color": "高亮颜色",
"Basic Shape": "基础图形"
}

View File

@ -14,7 +14,7 @@ class VisualMenu extends React.Component {
render() {
return <MenuItem title={_t('Visual')}>
<MenuItem title={_t('Basic')}
<MenuItem title={_t('Basic Shape')}
onClick={this.handleAddCircle}
/>
</MenuItem>;

View File

@ -0,0 +1,14 @@
/**
* Svg锚点
* @author tengge / https://github.com/tengge1
*/
class SvgAnchor extends React.Component {
constructor(props) {
super(props);
}
render() {
return <a />;
}
}
export default SvgAnchor;