mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-02 01:08:13 +00:00
17 lines
493 B
TypeScript
17 lines
493 B
TypeScript
import React, { PureComponent } from 'react';
|
|
import Editor from '@ali/lowcode-editor-framework';
|
|
import './index.scss';
|
|
export interface CenterAreaProps {
|
|
editor: Editor;
|
|
}
|
|
export default class CenterArea extends PureComponent<CenterAreaProps> {
|
|
static displayName: string;
|
|
private editor;
|
|
private areaManager;
|
|
constructor(props: any);
|
|
componentDidMount(): void;
|
|
componentWillUnmount(): void;
|
|
handleSkeletonUpdate: () => void;
|
|
render(): React.ReactNode;
|
|
}
|