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

11 lines
233 B
TypeScript

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