IAPage

Intelligent Advisor Flows was only made available to select customers, and will not be made Generally Available.

An IAPage corresponds to a page that has been authored in the flow.

The controls on a page are contained inside rows within the rows field. Each row contains one or more controls as part of the page layout (but note that authoring multiple controls on a row is currently disabled in the authoring environment).

function Page({page}: PageProps) {
    return <div key={page.id} class="page">
        <h1>{page.text}</h1>
        {page.rows.map(row=><Row row={row}/>)}
    </div>
}