You can also pass data into your form flows when they're configured as embeds using query parameters. Additional documentation is available in the .
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>
);