Modify isConstructorFunctionComponent - Check type is function

This commit is contained in:
2019-08-10 12:54:30 +05:30
parent d7276eff9e
commit 9ebc534cc3
+1 -1
View File
@@ -58,7 +58,7 @@ function isConstructorComponentClass(
function isConstructorFunctionComponent(
ctr: React.ElementType | null
): ctr is React.FunctionComponent {
return !isConstructorComponentClass(ctr);
return typeof ctr === "function" && !isConstructorComponentClass(ctr);
}
function doesElementContainRootFiberNode(