UNPKG

@sendbird/uikit-react-native

Version:

Sendbird UIKit for React Native: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.

10 lines (9 loc) 350 B
import React from 'react'; import { SendbirdGroupChannel } from '@sendbird/uikit-utils'; type Props = { channel: SendbirdGroupChannel; onPress: () => void; onLongPress: () => void; }; declare const GroupChannelPreviewContainer: ({ onPress, onLongPress, channel }: Props) => React.JSX.Element; export default GroupChannelPreviewContainer;