I want to incorporate 3 more conditional classes into this...
<li className={`list-group-item ${todo.completed ? " strike-through" : ""}`}
I now want ${todo.priority} to be included/alongside with this, which will assign classes:
"alert alert-info", "alert alert-warning", and "alert alert-danger" based on corresponding values in a drop down: 1, 2, 3.
Can someone help me with this, thank you in advance!
todo.prioritybe alongsidetodo.completed, or only one of the two?