Is it possible to use Button with Link?
For example:
dcc.Link("back", href=f"url")
works fine, but
html.Button(dcc.Link("back", href=f"url"), className='three columns'),
Will make the button appear to be like a link, but does not do anything when clicked.