createElementWithChildren function
Create a React element with multiple children using spread
Implementation
ReactElement createElementWithChildren(
JSAny type,
JSObject? props,
List<JSAny> children,
) => ReactElement._(
_createElementApply(type, props ?? JSObject(), children.toJS),
);