Part of Todo.js - Krutik
Anonymous
javascript
05/15/2021 10:18 AM
400 B
42
Indexable
<div className="bar-tag-container">
<li className={`todo-item ${todo.completed ? "completed" : ""}`}>
{isSpent && <p className="tag">Spent</p>}
{isReceived && <p className="tag">Received</p>}
<div className="others">${text}</div>
</li>
</div>Editor is loading...