Repository URL to install this package:
Version:
1.0.1-0 ▾
|
// @flow
import { ComponentType } from 'react'
export default function getComponentName(target: ComponentType<any>): string {
return target.displayName || target.name || 'Component'
}