
The SDK for workflow apps
Linkage is a drop-in editor that handles the UI, validation, collaboration, and run
visualization, so you can build and scale workflow-driven apps in minutes.
Works with Temporal, queues, Lambdas, or your own executor.
import { StandaloneEditor } from "@linkage-open/lib/react";
export function CRMWorkflowBuilder({ id }: { id: string }) {
return (<StandaloneEditor
workflowId={id}
buildConfig={{
controlBlocks: true,
userOverlays: true,
}}
/>);
}