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);