Remove payments API routing initialization
[ProtonMail-WebClient.git] / packages / components / containers / cache / cacheContext.ts
blobcac4fab77daef176407d80c13fd984563c125f44
1 import { createContext } from 'react';
3 import type { Cache } from '@proton/shared/lib/helpers/cache';
5 export default createContext<Cache<any, any> | null>(null);