Skip to content

Instantly share code, notes, and snippets.

@tiagofer
Created March 14, 2020 02:42
Show Gist options
  • Save tiagofer/226c875544050b0f71d005a7d53f348f to your computer and use it in GitHub Desktop.
Save tiagofer/226c875544050b0f71d005a7d53f348f to your computer and use it in GitHub Desktop.
@app.callback(
Output(component_id='my-div', component_property='children'),
[Input(component_id='my-id', component_property='value')]
)
def update_output_div(input_value):
return 'You\'ve entered "{}"'.format(input_value)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment