speakeloudest f86e3b4725
All checks were successful
CI / build (20.15.1) (push) Successful in 21m1s
feat: 增加线路优化注册功能
2025-12-09 21:53:52 -08:00

11 lines
243 B
TypeScript

'use client';
import EmailAuthForm2 from '@/app/auth/email2/auth-form';
export default function RegisterPage() {
return (
<div className='container w-full py-8 sm:w-[496px]'>
<EmailAuthForm2 isRedirect={true} />
</div>
);
}