GitHub Actions
Deploy from GitHub Actions (2026-03-06 15:20 UTC)
ff6ab6d
raw
history blame contribute delete
289 Bytes
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">
&#x2715;
</button>
</div>
);
}