import { createContext, useContext } from "@/import/react";
const StoreValuesContext = createContext();
export default StoreValuesContext;
/**
* Modals are mounted outside the next.js app div. Use this context to retrieve the font.
* Use the 'variable' key for TailwindCSS usage.
* @returns {unknown}
*/
export function useStoreValues() {
return useContext(StoreValuesContext);
}