mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-06 10:27:22 +00:00
19 lines
404 B
TypeScript
19 lines
404 B
TypeScript
import { PureComponent } from 'react';
|
|
import { PluginProps } from '@ali/lowcode-types';
|
|
import { OutlinePane } from './pane';
|
|
|
|
export const Backup = Symbol.for('backup-outline');
|
|
|
|
export class OutlineBackupPane extends PureComponent<PluginProps> {
|
|
render() {
|
|
return (
|
|
<OutlinePane
|
|
editor={this.props.editor}
|
|
config={{
|
|
name: Backup,
|
|
}}
|
|
/>
|
|
);
|
|
}
|
|
}
|