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) 515 B
import React from 'react'; import { CreateOpenChannelUIProps } from './components/CreateOpenChannelUI'; import { CreateOpenChannelProviderProps } from './context/CreateOpenChannelProvider'; export interface CreateOpenChannelProps extends CreateOpenChannelProviderProps, CreateOpenChannelUIProps { } declare function CreateOpenChannel({ className, onCreateChannel, onBeforeCreateChannel, closeModal, renderHeader, renderProfileInput, }: CreateOpenChannelProps): React.ReactElement; export default CreateOpenChannel;