| 12 | import { remToPx } from '@/lib/remToPx' |
| 13 | |
| 14 | export interface Section { |
| 15 | id: string |
| 16 | title: string |
| 17 | offsetRem?: number |
| 18 | tag?: string |
| 19 | headingRef?: React.RefObject<HTMLHeadingElement> |
| 20 | } |
| 21 | |
| 22 | interface SectionState { |
| 23 | sections: Array<Section> |
nothing calls this directly
no outgoing calls
no test coverage detected