I am trying to render in react, jsx, a loop inside of a loop Like bellow:
{this.state.ans.map(function(item) {
return (
{this.state.quest.map(
function(item1) {return (item1)}
)}
{item}
)
})}
This does not work any other suggestions