Data binding
Data binding is a widely used concept inside Toolpad apps. It allows connecting various parts of the application and make them react to data changes.
Binding button
In order to initiate data binding look around in the UI for a binding button.

The easiest way to tell if a value can be "data bound" is by locating binding button, i.e. TextField component allows us to bind every property that we could otherwise control manually.

Binding editor
Upon clicking binding button you will be presented with binding editor which allows you to define JavaScript expression.
At the top of the editor you can see an explanation what type of property we expect to be defined (i.e. above mentions string).

On the left side of the editor you have a list of all the variables in the scope that can be used to define the expression.
You can either simply pass a path to a property of the object or you can also use any other JavaScript expression or code snippet to additionally process the value that is going to be used.

All that's left is to click Update binding and you can observe how application behaves.
(In this example you can see TextField value bound to the value of Typography component).
Empty field:

Field with value:
