ola,
I am new to dash. I have create a button using dcc.Link . I am trying to update href component using a callback to update href link from "/" to "/{variable1}/{variable2}", but it is not working.
dcc.Link(
html.Button("Launch", n_clicks=0, id="my_button"),
id="my_link",
href="/"
refresh=True,
target="_blank",
),