UNPKG

payload-totp-temp

Version:

Add an extra security layer to PayloadCMS using a Time-based One-time Password (TOTP).

7 lines (6 loc) 167 B
import type { TOTP } from 'otpauth'; type Args = { totp: TOTP; }; export default function QRCode({ totp }: Args): Promise<import("react").JSX.Element>; export {};