UNPKG

eip-components-web

Version:
8 lines 278 B
import { createContext, useContext } from 'react'; export const ImageCache = createContext([ [], () => undefined, ]); export const ImageCacheProvider = ImageCache.Provider; export const useImageCache = () => useContext(ImageCache); //# sourceMappingURL=ImageCache.js.map