The following code should render a white text link but always returns a dark blue text, as if link was clicked
html.A(
dcc.Link("Logout", href="logout", target="_top"),
style={"color": "white"}
)
in this case, which params I should pass in style dict ??