React.createElement
1 2 3 4 5 | ReactElement createElement( string/ReactClass type, [object props], [children ...] ) |
Create and return a new ReactElement
of the given type. The type argument can be either an html tag name string (eg. 'div', 'span', etc), or a ReactClass
(created via React.createClass
).
Please login to continue.