import panel as pn pn.extension() text_input = pn.widgets.TextInput(name='Text Input', placeholder='Enter a string here...') text_input text_input.value pn.Row(text_input.controls(jslink=True), text_input)