File size: 289 Bytes
ff6ab6d
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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>
    );
}