mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-15 14:00:35 +00:00
22 lines
359 B
JavaScript
22 lines
359 B
JavaScript
import React, { PureComponent } from 'react';
|
|
|
|
import Widget from '_';
|
|
|
|
import './index.less';
|
|
|
|
export default class Example extends PureComponent {
|
|
static displayName = 'example';
|
|
constructor(props) {
|
|
super(props);
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<div className="example">
|
|
This is an example
|
|
<Widget />
|
|
</div>
|
|
);
|
|
}
|
|
}
|