| 12 | import { remToPx } from '@/lib/remToPx' |
| 13 | |
| 14 | interface NavGroup { |
| 15 | title: string |
| 16 | links: Array<{ |
| 17 | title: string |
| 18 | href: string |
| 19 | tag?: string |
| 20 | }> |
| 21 | } |
| 22 | |
| 23 | function useInitialValue<T>(value: T, condition = true) { |
| 24 | let initialValue = useRef(value).current |
nothing calls this directly
no outgoing calls
no test coverage detected