function Welcome(props) { return React.createElement( 'h1', // the type of element (html element type) {}, // the props (html such as element can get attribute such as class) [ // the children of the element build the DOM tree `Hello, ${props.name}`, // the first child is a text node props.children // the other node passed with the arguments ] ); }