Dash html.A tags within html.P tags

If you pass multiple components as children of another component you must pass them as a list. For example.

html.P(
    [
        "1. ",
        html.A("Behavior clusters", href = "#"),
        " of the associates within your team, along with historical "
    ]
)
3 Likes