mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-12 11:20:11 +00:00
12 lines
215 B
JavaScript
12 lines
215 B
JavaScript
import React, { PureComponent } from 'react';
|
|
|
|
export default class DivView extends PureComponent {
|
|
static displayName = 'Div';
|
|
|
|
static version = '0.0.0';
|
|
|
|
render() {
|
|
return <div {...this.props} />;
|
|
}
|
|
}
|