+ {/* Chat Header */}
+
+ Ask a Question
+
+
+ {/* Chat Messages */}
+
+ {messages.map((msg, index) => (
+
{msg}
+ ))}
+
+
+ {/* Input Area */}
+
+ setInput(e.target.value)}
+ onKeyDown={(e) => e.key === "Enter" && handleSend()}
+ style={{ width: "100%", padding: "5px", fontSize: "14px" }}
+ placeholder="Ask your question..."
+ />
+
+
+ )}
+ >
+ );
+};