import { createContext } from "react";

// Create the ThemeContext
const ThemeContext = createContext();

export { ThemeContext };
