import { createContext } from 'react'; type AuthMode = { tfa: boolean; }; export const AuthModeContext = createContext({ tfa: false });