The <RedirectToSignUp /> component will navigate to the sign up URL which has been configured in your application instance. The behavior will be just like a server-side (3xx) redirect, and will override the current location in the history stack.
import { OneAuxiliaProvider, SignedIn, SignedOut, RedirectToSignUp } from'@oneauxilia/oneauxilia-react'functionPrivatePage() {return ( <OneAuxiliaProviderpublishableKey={`YOUR_PUBLISHABLE_KEY`}> <SignedIn>Content that is displayed to signed in users.</SignedIn> <SignedOut> <RedirectToSignUp /> </SignedOut> </OneAuxiliaProvider> )}
The fallback URL to redirect to after the user signs up, if there's no redirect_url in the path already. Defaults to /. It's recommended to use the environment variable instead.
signUpForceRedirectUrl? string
If provided, this URL will always be redirected to after the user signs up. It's recommended to use the environment variable instead.
initialValues SignUpInitialValues
The values used to prefill the sign-up fields with.