2020-12-08 11:37:05 +08:00

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,
}}
/>
);
}
}