| 5 | type Theme = "light" | "dark"; |
| 6 | |
| 7 | interface ThemeContextType { |
| 8 | theme: Theme; |
| 9 | toggleTheme: () => void; |
| 10 | } |
| 11 | |
| 12 | const ThemeContext = createContext<ThemeContextType | undefined>(undefined); |
| 13 |
nothing calls this directly
no outgoing calls
no test coverage detected