@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) • 360 B
TypeScript
import React from 'react';
import { CreateChannelUIProps } from './components/CreateChannelUI';
import { CreateChannelProviderProps } from './context/CreateChannelProvider';
export interface CreateChannelProps extends CreateChannelProviderProps, CreateChannelUIProps {
}
declare const CreateChannel: React.FC<CreateChannelProps>;
export default CreateChannel;