@hitachivantara/uikit-react-shared
Version:
Shared React contexts for the NEXT UI Kit.
16 lines (15 loc) • 340 B
JavaScript
import { createContext } from "react";
import createCache from "@emotion/cache";
const defaultCacheKey = "hv";
const defaultEmotionCache = createCache({
key: defaultCacheKey,
prepend: true
});
const EmotionContext = createContext({
cache: defaultEmotionCache
});
export {
EmotionContext,
defaultCacheKey,
defaultEmotionCache
};