useSignUp()
The useSignUp()
composable provides access to the SignUp
object, which allows you to check the current state of a sign-up attempt and manage the sign-up flow. You can use this to create a custom sign-up flow.
Returns
- Name
isLoaded
- Type
Ref<boolean>
- Description
A boolean that indicates whether Clerk has completed initialization. Initially
false
, becomestrue
once Clerk loads.
- Name
setActive()
- Type
Ref<(params: SetActiveParams) => Promise<void>>
- Description
A function that sets the active session.
- Name
signUp
- Type
Ref<SignUp>
- Description
An object that contains the current sign-up attempt status and methods to create a new sign-up attempt.
How to use the useSignUp()
composable
Check the current state of a sign-up
The following example uses the useSignUp()
hook to access the SignUp
object, which contains the current sign-up attempt status and methods to create a new sign-up attempt. The isLoaded
property is used to handle the loading state.
Feedback
Last updated on