UNPKG

payload-totp

Version:

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

9 lines (8 loc) 212 B
import React from 'react'; type Args = { apiRoute: string; length?: number; serverURL: string; }; export default function OTPForm({ apiRoute, length, serverURL }: Args): React.JSX.Element; export {};