Been struggling with this for some time now and would appreciate any insight you guys have..
This is what my JSON Data looks like..
BinsByDayByOrchardsQCs [Array] > BinsByDayByOrchardsQCsDefects [Array]
I need to display each "Defect" on a grid table, which is inside the array of BinsByDayByOrchardsQCsDefects which will look something like this 
What I have so far is {this.state.rows.map((qc) => <div className="row table">{qc.BinsByDayByOrchardsQCs[0].BinsByDayByOrchardsQCsDefects[0].Defect}</div>
This currently returns Hail Damage, Sunburn, Sunburn, Sunburn, my question to you guys is how do I return all the defects from the whole array not just [0]
iteratenot only on 0 you can do `this.state.rows.map((qc, index) => allothercode). Cheers, sigfried.