UNPKG

@sendbird/uikit-react

Version:

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

8 lines (7 loc) 381 B
import React from 'react'; import { ChannelSettingsUIProps } from './components/ChannelSettingsUI'; import { ChannelSettingsContextProps } from './context/index'; interface ChannelSettingsProps extends ChannelSettingsContextProps, Omit<ChannelSettingsUIProps, 'renderUserListItem'> { } declare const ChannelSettings: React.FC<ChannelSettingsProps>; export default ChannelSettings;