interface ChatBotProps {
  customizeMode?: boolean;
  children?: React.ReactNode;
}

export default function ChatBotContainer({
  customizeMode,
  children,
}: ChatBotProps) {
  return (
    <>
      {customizeMode ? (
        <div className="d-flex ml-auto mr-auto justify-content-center">
          {children}
        </div>
      ) : (
        <>{children}</>
      )}
    </>
  );
}
