UNPKG

stream-chat-react-native-core

Version:

The official React Native and Expo components for Stream Chat, a service for building chat applications

7 lines (4 loc) 244 B
import type { ComponentType } from 'react'; import type { UnknownType } from '../../types/types'; export const getDisplayName = <P extends UnknownType>(Component: ComponentType<P>) => Component.displayName || Component.name || 'Component';