@sendbird/uikit-react
Version:
Sendbird UIKit for React: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.
17 lines (16 loc) • 497 B
TypeScript
import React from 'react';
import './index.scss';
interface Props {
appId: string;
channelUrl?: string;
userId: string;
nickname: string;
theme?: 'light' | 'dark';
imageCompression?: {
compressionRate?: number;
resizingWidth?: number | string;
resizingHeight?: number | string;
};
}
export default function OpenChannelApp({ appId, channelUrl: legacyChannelUrl, userId, nickname, theme, imageCompression, }: Props): React.JSX.Element;
export {};