Reactjs – How to resolve error regarding key in react?
I am trying to fetch information from my mongodb server and display it using map. <div> <h1>Mypolls</h1> {/* You can map through the polls array and render the poll data */} {polls.map((poll) => ( <div key={poll.id}> <div>{poll.question}</div> {/* Map through…