import { ComponentType } from 'react'; /** * Возвращает название react-компонента. */ export function getDisplayName(component: ComponentType): string { return component.displayName || component.name || 'Component'; }