nico-martin's picture
nico-martin HF Staff
done
db78b1a
import { createContext } from "react";
import type { ThemeContextType } from "./types.ts";
const ThemeContext = createContext<ThemeContextType>(null);
export default ThemeContext;