(Component: Function)
| 303 | : createFiberImplClass; |
| 304 | |
| 305 | function shouldConstruct(Component: Function) { |
| 306 | const prototype = Component.prototype; |
| 307 | return !!(prototype && prototype.isReactComponent); |
| 308 | } |
| 309 | |
| 310 | export function isSimpleFunctionComponent(type: any): boolean { |
| 311 | return ( |
no outgoing calls
no test coverage detected