Embed query parameters
Passing data to an embed
Example: Passing in data to a React component
import React from "react";
import EmbedFlow from "@formsort/react-embed";
const EmbedFlowExample: React.FunctionComponent = () => (
<div>
<EmbedFlow
clientLabel="formsort"
flowLabel="onboarding"
variantLabel="main"
embedConfig={{
style: {
width: "100%",
height: "100%"
}
}}
queryParams={["zipcode", "01234"]}
/>
</div>
);Last updated
Was this helpful?