I want to render nested array elements. To render elements I used .map but it is not working for second array.
Using list=[{value: 'One', list:[{value: 'abc', selected: false}, {value: 'efg', selected: false}]}, {value: 'Two', list: [{value: 'psr', selected: false}]}];
list.map((item, index) => {
return (
<div key={index}>
<ul >{item.value}</ul>
item.list.map((subitem, i) => {
return (
<ul >{subitem.value}</ul>
)
})
</div>
)
})
Am I missing anything here?
Thanks
Try this. You missed { } before your second map
list.map((item, index) => {
return (
<div key={index}>
<ul >{item.value}</ul>
{
item.list.map((subitem, i) => {
return (
<ul ><li>{subitem.value}</li></ul>
)
})
}
</div>
)
}
DEMO: https://jsfiddle.net/jwm6k66c/2611/
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With