(object: any)
| 28 | }; |
| 29 | |
| 30 | export function isValidElement(object: any) { |
| 31 | return ( |
| 32 | typeof object === 'object' && |
| 33 | object !== null && |
| 34 | object.$$typeof === REACT_ELEMENT_TYPE |
| 35 | ); |
| 36 | } |
| 37 | |
| 38 | export const createElement = ( |
| 39 | type: ElementType, |
nothing calls this directly
no outgoing calls
no test coverage detected