React.createElement(
type,
[props],
[...children]
)
参数 | 说明 |
---|---|
type | 可以是一个标签名。如 div、span,或者 React 组件。 |
props | 传入的属性。 |
children | 组件的子组件。 |
React.createElement(
type,
[props],
[...children]
)
参数 | 说明 |
---|---|
type | 可以是一个标签名。如 div、span,或者 React 组件。 |
props | 传入的属性。 |
children | 组件的子组件。 |