Remove payments API routing initialization
[ProtonMail-WebClient.git] / packages / components / containers / authentication / authenticationContext.ts
blobaa6fbfad272a04ad5ba838df3a9a716ed7f40e37
1 import { createContext } from 'react';
3 import type { PrivateAuthenticationStore, PublicAuthenticationStore } from '../app/interface';
5 // Trusting this always gets set
6 export default createContext<PublicAuthenticationStore | PrivateAuthenticationStore>(null as any);