()
| 37 | }) |
| 38 | |
| 39 | const toggle = () => { |
| 40 | const newValue = !store.isOpen |
| 41 | setStore("isOpen", newValue) |
| 42 | props.onOpenChange?.(newValue) |
| 43 | } |
| 44 | |
| 45 | return ( |
| 46 | <div data-component="dropdown" class={props.class} ref={dropdownRef}> |
nothing calls this directly
no test coverage detected