Evo.Auth/apps/web/context/auth-mode.ts
2024-05-03 18:08:46 +03:00

8 lines
150 B
TypeScript

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