| 13 | } |
| 14 | |
| 15 | interface SectionsContextInterface { |
| 16 | sectionsVisibles: string[]; |
| 17 | setSectionsVisibles: (sections: string[]) => void; |
| 18 | isVisible: (section: string) => boolean; |
| 19 | } |
| 20 | |
| 21 | export const SectionsContext = createContext<SectionsContextInterface>({ |
| 22 | sectionsVisibles: [], |
nothing calls this directly
no outgoing calls
no test coverage detected