React
promptMfaAuth
import { usePromptMfaAuth } from '@dynamic-labs/sdk-react-core'; const App = () => { const promptMfaAuth = usePromptMfaAuth(); return ( <button onClick={() => promptMfaAuth()} > Prompt MFA </button> ); };
Was this page helpful?