yo-next-auth/app/[locale]/auth/register/page.tsx

11 lines
181 B
TypeScript

import { RegisterForm } from '@/components/auth/register-form'
const RegisterPage = () => {
return (
<div>
<RegisterForm/>
</div>
)
}
export default RegisterPage