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) 303 B
import { ReactElement } from 'react'; import './community.scss'; import './theme.scss'; interface Props { appId: string; userId: string; nickname: string; theme?: 'light' | 'dark'; } export default function Community({ appId, userId, theme, nickname, }: Props): ReactElement; export {};