Inputs are a UI element for user to enter a value, so you would do this:
# Cell 1
input = Kino.Input.text(“Path”) # <-- label
# [Renders text input]
# Cell 2
path = Kino.Input.read(input) # <-- read the value of the input field above
Inputs are a UI element for user to enter a value, so you would do this:
# Cell 1
input = Kino.Input.text(“Path”) # <-- label
# [Renders text input]
# Cell 2
path = Kino.Input.read(input) # <-- read the value of the input field above