react-chatbot-test / src /components /TypingMessage.jsx
ferrywuai's picture
Modularize chat completion and add loading and typing animation
cc1ccff
export default function TypingMessage({ text }) {
return <div style={{ fontStyle: "italic", color: "#666" }}>{text}</div>;
}