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