IAGroupControl

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

An IAGroupControl represents a group of controls.

The rows are instances of IARow.

A simple group control implementation would be:

function Group({control}: ControlProps<IAGroupControl>) {
    return <div key={control.id}>
        {control.rows.map(row=>(<Row row={row}/>))}
    </div>;
}