1
2
3
4
5
6
7
8
9
10
11
import solara back = solara.reactive("") @solara.component def Page(): solara.Text("Computer: Hello there!") solara.InputText("Say something", value=back, continuous_update=True) solara.Text(f"Me: {back.value}")