zkt25/z1/frontend/src/components/ChatWindow.jsx

17 lines
322 B
JavaScript

import React from "react";
const ChatWindow = ({ messages }) => {
return (
<div className="chat-window">
{messages.map((msg, index) => (
<div key={index} className={`message ${msg.sender}`}>
{msg.text}
</div>
))}
</div>
);
};
export default ChatWindow;