<RedirectToCreateOrganization />
(deprecated)
The <RedirectToCreateOrganization />
component will navigate to the create organization flow 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.
Usage with JavaScript
The following method available on an instance of the Clerk
class is used to render and control the <RedirectToCreateOrganization />
component:
The following examples assume that you have followed the quickstart in order to add Clerk to your JavaScript application.
redirectToCreateOrganization()
Render the <RedirectToCreateOrganization />
component to an HTML <div>
element.
function redirectToCreateOrganization(): Promise<unknown>
import { Clerk } from '@clerk/clerk-js'
// Initialize Clerk with your Clerk Publishable Key
const clerkPubKey = import.meta.env.VITE_CLERK_PUBLISHABLE_KEY
const clerk = new Clerk(clerkPubKey)
await clerk.load()
await clerk.redirectToCreateOrganization()
Feedback
Last updated on