UNPKG

@redhare/lowcode-types

Version:

Types for Ali lowCode engine

8 lines (7 loc) 257 B
import { Component } from 'react'; /** * @deprecated use same function from '@redhare/lowcode-utils' instead */ export function isReactClass(obj) { return obj && obj.prototype && (obj.prototype.isReactComponent || obj.prototype instanceof Component); }