// ============================================================================ // Chatbot Popover // ============================================================================ import type { FunctionComponent } from 'react'; // Import PatternFly components import { Popover, PopoverProps } from '@patternfly/react-core'; export const ChatbotPopover: FunctionComponent = ({ children, className, ...props }) => ( {children} ); export default ChatbotPopover;