Issue
<textarea class="form-control quiz"{item.title}"" id="exampleFormControlTextarea1" rows="3"></textarea>
in this example i want to add item.title prop with quiz class
I want to add prop with quiz class so how should I concatenate this scenario
Solution
You can do it this way
<textarea className={`form-control quiz${item.title}`} id="exampleFormControlTextarea1" rows="3">
Answered By - Muhiq kapadia
Answer Checked By - - Senaida (ReactFix Volunteer)