import { useState } from 'react'; import { Button, Heading, Link, OtpInput, Text, VStack } from '@cdx-ui/components'; export function VerifyCard() { const [otp, setOtp] = useState('482'); return ( Verify it's you Please enter the 6-digit code we sent via text message. Didn't receive the code?{' '} Resend ); }