Spaces:
Running
Running
File size: 182 Bytes
5fabc0f |
1 2 3 4 5 6 7 8 |
export default function MessageBubble({ msg }) {
return (
<div className={`bubble-row ${msg.role}`}>
<div className="bubble">{msg.content}</div>
</div>
);
}
|