I can display the twitter one but the person object i can't
I tried this:
comps=comps.map(function(comp,index){
return(
<div key={index}>
Twitter : <a href={comp.twitter}>{comp.twitter}</a> // this one work
Person Name:<span className="PersonneName">{comp.person.nameP}</span> // not working
</div>
);
});
Thank you
