mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-02-07 05:55:44 +00:00
16 lines
293 B
TypeScript
16 lines
293 B
TypeScript
import React, { PureComponent } from 'react';
|
|
|
|
import './index.scss';
|
|
|
|
export default class CenterArea extends PureComponent {
|
|
static displayName = 'lowcodeCenterArea';
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
}
|
|
|
|
render() {
|
|
return <div className="lowcode-center-area"></div>;
|
|
}
|
|
}
|