/react-is-class

A function to check whether a component is a class or a functional component

Primary LanguageJavaScriptMIT LicenseMIT

react-is-class

A function to check whether a component is a class or a functional component. It can be useful to "squash" a component wrapped with a higher-order component and save a react component instance.

import isClassComponent, { isPureClassComponent } from 'react-is-class';

Taken from recompose from Andrew Clark.