react-chatbot-test / src /components /MessagePair.jsx
ferrywuai's picture
Extract MessageInput, MessageBubble and MessagePair components
424a8d9
import MessageBubble from "./MessageBubble";
export default function MessagePair({ userMessage, assistantMessage }) {
return (
<div style={{ marginBottom: "16px" }}>
<MessageBubble role="user" content={userMessage} />
<MessageBubble role="assistant" content={assistantMessage} />
</div>
);
}