| 10 | type Category = (typeof PRODUCT_CATEGORIES)[number] |
| 11 | |
| 12 | interface NavItemProps { |
| 13 | category: Category |
| 14 | handleOpen: () => void |
| 15 | close: () => void |
| 16 | isOpen: boolean |
| 17 | isAnyOpen: boolean |
| 18 | } |
| 19 | |
| 20 | const NavItem = ({ |
| 21 | isAnyOpen, |
nothing calls this directly
no outgoing calls
no test coverage detected