A function to check whether a component is a class or a functional component
npm install react-is-classA 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.
``js``
import isClassComponent, { isPureClassComponent } from 'react-is-class';
Taken from recompose from Andrew Clark.