UNPKG

payload-totp

Version:

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

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