skip to Main Content

Html – react mapping over an array with image url

I am trying to map over an array with some image urls However I am having trouble to display the images this is my mapping function <div className='Team-Members'> {OurTeamtext.map((team)=>{ return ( <div key={team.id} className='Team-Member'> <img src={team.picture}></img> <div className='Team-Member-description'> <p>{team.name}</p> <p>{team.position}</p>…

VIEW QUESTION
Back To Top
Search