8 lines
150 B
TypeScript
8 lines
150 B
TypeScript
import { createContext } from 'react';
|
|
|
|
type AuthMode = {
|
|
tfa: boolean;
|
|
};
|
|
|
|
export const AuthModeContext = createContext<AuthMode>({ tfa: false });
|