mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-15 14:00:35 +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)} />;
|
|
}
|
|
}
|