| 13 | const mq = breakpoints.map((bp) => `@media (max-width: ${bp}px)`); |
| 14 | |
| 15 | interface ButtonProps |
| 16 | extends DetailedHTMLProps< |
| 17 | ButtonHTMLAttributes<HTMLButtonElement>, |
| 18 | HTMLButtonElement |
| 19 | > { |
| 20 | isShow?: boolean; |
| 21 | } |
| 22 | |
| 23 | export function TopNav({ step }: { step: number }) { |
| 24 | const setThirdMode = useCarStore((state) => state.setThirdMode); |
nothing calls this directly
no outgoing calls
no test coverage detected