How to get TC id value and using map function in react js
Here's my code json
[
{
"Results": {
"TC": [
{
"id": 1
},
{
"id": 2
},
{
"id": 3
}
]
}
}
]
Here's my React Code:
import PostData from './result_log.json';
{PostData.map((PostDetail, index) => {
return <h1>{PostDetail.Results.TC.length}</h1>
})}
h1tag for each id?