'use client'; import { useState } from 'react'; import { Button } from '@documenso/ui/primitives/button'; import { ViewRecoveryCodesDialog } from './view-recovery-codes-dialog'; type RecoveryCodesProps = { // backupCodes: string[] | null; isTwoFactorEnabled: boolean; }; export const RecoveryCodes = ({ isTwoFactorEnabled }: RecoveryCodesProps) => { const [isOpen, setIsOpen] = useState(false); return ( <>

Recovery Codes

Recovery codes are used to access your account in the event that you lose access to your authenticator app.

); };