Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
function VerifyMfa(props: VerifyMfaProps): Element;
props
VerifyMfaProps
Element
// Default usage <VerifyMfa onSuccess={(mfaCode) => console.log("Verified!", mfaCode)} />
// With custom UI <VerifyMfa onSuccess={handleSuccess}> {(state) => ( <> <h2>Enter your code</h2> <VerifyMfaFlow /> {state.error && <p className="error">{state.error}</p>} </> )} </VerifyMfa>
Was this page helpful?