2020-05-10 03:57:38 +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,
}}
/>
);
}
}