Dylan Alvandi

Results 3 comments of Dylan Alvandi

I'm also having this problem myself. In a very simple use case: ``` const [isOpen, setIsOpen] = useState(false); const toggleAccordion = () => { setIsOpen(!isOpen); console.log(isOpen) }; return ( Hello...

To note here is that I've also attempted using the setOpen prop for AccordionPanel, which imo is lacking documentation on how it's supposed to be used. As someone trying to...

@rluders thanks for the quick response, it's very much appreciated. In the meanwhile, any hints on what could be done in order to trigger the opening/closing of the AccordionPanel? I...