mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-02-08 23:25:36 +00:00
13 lines
313 B
TypeScript
13 lines
313 B
TypeScript
import { Component } from 'react';
|
|
import embedEditor from '../../globals/embed-editor';
|
|
|
|
export default class EmbedEditorToolbar extends Component {
|
|
shouldComponentUpdate() {
|
|
return false;
|
|
}
|
|
|
|
render() {
|
|
return <div className="embed-editor-toolbar" ref={shell => embedEditor.mount(shell)} />;
|
|
}
|
|
}
|