react-chatbot-test / src /components /ThinkingDots.jsx
ferrywuai's picture
Modularize chat completion and add loading and typing animation
cc1ccff
import "../styles/ThinkingDots.css";
export default function ThinkingDots() {
return (
<div className="thinking-dots">
<span>.</span>
<span>.</span>
<span>.</span>
</div>
);
}