import React from 'react'; import { Conversation } from '@tencentcloud/chat'; import './styles/index.scss'; export interface ConversationListContainerProps { error?: Error | null, loading?: boolean, setConversationList?: React.Dispatch>> } export function ConversationListContainer< T extends ConversationListContainerProps >(props: React.PropsWithChildren) { const { children } = props; return (
{children}
); }