import React from "react"; const ChatWindow = ({ messages }) => { return (
{messages.map((msg, index) => (
{msg.text}
))}
); }; export default ChatWindow;