Spaces:
Running
Running
| export default function ChatHeader({ onClose }) { | |
| return ( | |
| <div class="chat-header"> | |
| <h1>Smart Chatbot</h1> | |
| <button class="chat-close-btn" onClick={onClose} aria-label="Close chat"> | |
| ✕ | |
| </button> | |
| </div> | |
| ); | |
| } | |