const FloatingContact = () => { const [isOpen, setIsOpen] = React.useState(false); return (
{/* Options */}
{/* WhatsApp */} WhatsApp {/* Email */} Email {/* Direct Call */} Call
{/* Main Toggle Button */}
); }; const contactRoot = ReactDOM.createRoot(document.getElementById('floating-contact-root')); contactRoot.render();