UNPKG

@sendbird/uikit-react

Version:

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

12 lines (11 loc) 383 B
import { ReactElement } from 'react'; import './open-channel-preview.scss'; import { OpenChannel } from '@sendbird/chat/openChannel'; interface Props { channel: OpenChannel; selected: boolean; onClick(event: any): void; isStreaming?: boolean; } export default function OpenChannelPreview({ channel, selected, onClick, isStreaming, }: Props): ReactElement; export {};