import { ReactChild } from 'react'; import { Component } from '../types'; export default function isComponentOfType( classType: Component, reactElement: ReactChild, ): boolean { if ( typeof reactElement === 'string' || typeof reactElement === 'number' || !reactElement ) { return false; } else { return reactElement.type === classType; } }