| 64 | } |
| 65 | |
| 66 | interface ThemeContextType { |
| 67 | theme: ThemeMode |
| 68 | setTheme: (theme: ThemeMode) => void |
| 69 | } |
| 70 | |
| 71 | export const LanguageContext = createContext<LanguageContextType | null>(null) |
| 72 | export const ThemeContext = createContext<ThemeContextType | null>(null) |
nothing calls this directly
no outgoing calls
no test coverage detected