(n_clicks)
| 253 | Input("origin-button", "n_clicks"), |
| 254 | ) |
| 255 | def generate_button(n_clicks): |
| 256 | set_props( |
| 257 | "generated-button-container", |
| 258 | { |
| 259 | "children": html.Button( |
| 260 | "generated button", id="generated-button", n_clicks=0 |
| 261 | ) |
| 262 | }, |
| 263 | ) |
| 264 | |
| 265 | @app.callback( |
| 266 | Output("generated-button-output", "children"), |
nothing calls this directly
no test coverage detected
searching dependent graphs…