| import { createContext } from "react"; | |
| import type { ThemeContextType } from "./types.ts"; | |
| const ThemeContext = createContext<ThemeContextType>(null); | |
| export default ThemeContext; | |
| import { createContext } from "react"; | |
| import type { ThemeContextType } from "./types.ts"; | |
| const ThemeContext = createContext<ThemeContextType>(null); | |
| export default ThemeContext; | |