(type, key, self, source, owner, props)
| 117 | ReactSharedInternals = { H: null, A: null, T: null, S: null }, |
| 118 | hasOwnProperty = Object.prototype.hasOwnProperty; |
| 119 | function ReactElement(type, key, self, source, owner, props) { |
| 120 | self = props.ref; |
| 121 | return { |
| 122 | $$typeof: REACT_ELEMENT_TYPE, |
| 123 | type: type, |
| 124 | key: key, |
| 125 | ref: void 0 !== self ? self : null, |
| 126 | props: props |
| 127 | }; |
| 128 | } |
| 129 | function cloneAndReplaceKey(oldElement, newKey) { |
| 130 | return ReactElement( |
| 131 | oldElement.type, |
no outgoing calls
no test coverage detected
searching dependent graphs…