(repoPath: string, e: React.MouseEvent)
| 112 | }; |
| 113 | |
| 114 | const handleExampleClick = (repoPath: string, e: React.MouseEvent) => { |
| 115 | e.preventDefault(); |
| 116 | router.push(repoPath); |
| 117 | }; |
| 118 | |
| 119 | const handleDropdownToggle = (dropdown: "customize" | "export") => { |
| 120 | setActiveDropdown(activeDropdown === dropdown ? null : dropdown); |