UNPKG

@boneframework/native-components

Version:
15 lines (10 loc) 267 B
import { createContext } from "react"; interface CacheContextProps { blacklist: string[]; cacheExpiryMinutes: number; }; const CacheContext = createContext<CacheContextProps>({ blacklist: [], cacheExpiryMinutes: 0 }); export default CacheContext;