function ShareModal({ postUrl }) { const [visible, setVisible] = useState(false); if (!postUrl) return null; return ( <> {visible && (

Share this listing

Twitter Facebook Email
)} ); }