Install Prodio Workflows
Install the Prodio Workflows SDK library via an NPM package manager.
npm i @Prodio/workflow
Create the Prodio Workflows component and initialize it with your project ID.
"use client";
import { init } from "@Prodio/workflow";
import { useEffect } from "react";
export const ProdioWorkflows = () => {
useEffect(() => {
init({
// Insert your Prodio Workflows projectId
projectId: "xxxx",
});
}, []);
return null;
};
Lastly, don’t forget to render the Prodio Workflows component in the root of your application (layout.tsx
or App.tsx
). When that’s done, you can start creating onboarding workflows and launching them in your product.
Last updated on