Lines Matching refs:props
17 return function createRawReactElement(type, props, key, children) { argument
21 if (!props && childrenLength !== 0) {
22 props = {};
25 if (props && defaultProps) {
27 if (props[propName] === void 0) {
28 props[propName] = defaultProps[propName];
31 } else if (!props) {
32 props = defaultProps || {};
36 props.children = children;
44 props.children = childArray;
52 props: props,