(tab: string)
| 26 | const transitionName = `tab-highlight-${id}`; |
| 27 | |
| 28 | const handleTabChange = (tab: string): void => { |
| 29 | startTransition(() => { |
| 30 | addTransitionType(TOGGLE_TAB_TRANSITION); |
| 31 | onTabChange(tab); |
| 32 | }); |
| 33 | }; |
| 34 | |
| 35 | return ( |
| 36 | <div className="flex-1 min-w-[550px] sm:min-w-0"> |
no test coverage detected