Hello,
Im trying to build a sidebar like the one presented here: Bootstrap Sidenav - examples & tutorial
I Currently have this button:
html.Button(
#html.Span([html.I(className="fas fa-plus-circle ml-2")]),
[html.Span(className="fas fa-cog fa-lg")],
id="buttonModel50",
className="button-collapse",
data-activates="slide-out",
n_clicks=0
),
But I get the following error:
data-activates=“slide-out”,
^
SyntaxError: keyword can’t be an expression
How to use data-activates properly?