Hello I have some data I am trying to display with react that looks like this
there is an Options array inside of the Poll array. How do I display the options array with react when I am already mapping the Poll array? This is what i have so far:
renderPost(posts){
return posts.map((post) => {
return (
<div>
<h3>{post.question}</h3>
</div>
);
});
}