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

11 lines
180 B
TypeScript

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