tag //react code to toggle accessibility //function to call in order to open the accessibility menu //with React const [open, setOpen] = React.useState(false); const toogle = () => { if (!open) { // @ts-ignore window.interdeal.a11y.openMenu(); setOpen(true); } else { const element = document.getElementById('INDmenuOverlay'); if (element) { element.click(); } setOpen(false); } };