I have array in react like
[
{
no:"s1",
name:"abcd"
},
{
no:"s1",
name:"abcd"
}
]
I want to use map function to render in UI but. I want id to be increment with map integrations
eg
<ul>
<li id="1">
{no}
{name}
</li>
<li id="2">
{no}
{name}
</li>
</ul>