import type { ComponentType } from 'react'; import type { UnknownType } from '../../types/types'; export const getDisplayName =

(Component: ComponentType

) => Component.displayName || Component.name || 'Component';