mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-12 11:20:11 +00:00
12 lines
248 B
JavaScript
12 lines
248 B
JavaScript
var React = require('react');
|
|
var PropTypes = require('prop-types');
|
|
|
|
module.exports = class extends React.Component {
|
|
static propTypes = {
|
|
name: PropTypes.string
|
|
}
|
|
|
|
render() {
|
|
return <div>{this.props.name}</div>
|
|
}
|
|
} |