import { useEffect } from "react"; import { useChatStore } from "@/store"; import Icon from "../Icon"; const Header = () => { const chatStore = useChatStore(); const currentChat = chatStore.currentChat; const title = currentChat?.title || "SQL Chat"; useEffect(() => { document.title = `${title} - SQL Chat`; }, [title]); return (
); }; export default Header;