(type)
| 23805 | } |
| 23806 | |
| 23807 | function isSimpleFunctionComponent(type) { |
| 23808 | return typeof type === 'function' && !shouldConstruct(type) && type.defaultProps === undefined; |
| 23809 | } |
| 23810 | function resolveLazyComponentTag(Component) { |
| 23811 | if (typeof Component === 'function') { |
| 23812 | return shouldConstruct(Component) ? ClassComponent : FunctionComponent; |
no test coverage detected