import React from "react";
const ChatPanel = ({ threads, activeThread, setActiveThread, createNewThread }) => {
return (
{threads.map((thread) => (
- setActiveThread(thread)}
style={{
padding: "10px",
cursor: "pointer",
backgroundColor: thread === activeThread ? "#333" : "transparent",
borderRadius: "5px",
color: thread === activeThread ? "#fff" : "#aaa",
}}
>
{thread}
))}
);
};
export default ChatPanel;