Build brilliant workflow
experiences rapidly
Linkage is the complete dev toolkit for automated, no-code applications.
Deliver an exceptional workflow experience and expand your audience reach.
import { config, Chatbot } from "@pz-open/lib/react";
const { useSuggestedQuestions, useChatbot } =
config("sb_prod_0000", {
suggestedQuestions: {
enabled: true,
limit: 5,
},
chatbot: true
}
);
const CustomerChatbot = () => {
const questions = useSuggestedQuestions();
const chatbot = useChatbot();
return (
<div>
<p>How can I help you today?</p>
<Chatbot
chatbot={chatbot}
suggestedQuestions={questions}
Message={<Message />}
/>
</div>
);
}