mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-15 05:36:39 +00:00
14 lines
277 B
JavaScript
14 lines
277 B
JavaScript
import React from 'react';
|
|
|
|
var Greeting = function Greeting(_ref) {
|
|
var name = _ref.name;
|
|
return React.createElement("div", {
|
|
style: {
|
|
textAlign: 'center',
|
|
fontSize: '40px',
|
|
fontWeight: 'bold'
|
|
}
|
|
}, "Hello, ", name);
|
|
};
|
|
|
|
export default Greeting; |