| 1 | import { createContext } from "react"; |
| 2 | |
| 3 | interface SectionsContextInterface { |
| 4 | sectionsVisibles: string[]; |
| 5 | setSectionsVisibles: (sections: string[]) => void; |
| 6 | } |
| 7 | |
| 8 | const SectionsContext = createContext<SectionsContextInterface | null>(null); |
| 9 |
nothing calls this directly
no outgoing calls
no test coverage detected