// ============================================================================ // Chatbot Main // ============================================================================ import React from 'react'; export interface ChatbotContentProps extends React.HTMLProps { /** Content to be displayed in the chatbot */ children: React.ReactNode; /** Custom classname for the ChatbotContent component */ className?: string; } export const ChatbotContent: React.FunctionComponent = ({ children, className, ...props }: ChatbotContentProps) => (
{children}
); export default ChatbotContent;