Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialDionte Barnes
10,140 PointsTypeError: Cannot read property 'map' of undefined
How can I fix this? import React from 'react'; import PropTypes from 'prop-types';
const GuestList = props => <ul> {props.guests.map((guest, index) => <li key={index}> <span>{guest.name}</span> <label> <input type="checkbox" checked={guest.isConfirmed} /> Confirmed </label> <button>edit</button> <button>remove</button> </li> )} </ul>;
GuestList.propTypes = { guests: PropTypes.array.isRequired }
export default GuestList;
1 Answer
Brendan Whiting
Front End Web Development Techdegree Graduate 84,738 PointsI can't say for sure without looking at more of the code, but you're probably not passing in the guest
prop. You're trying to call .map() here: props.guests.map
and it's saying there is no .map()
function on guest
because guest
is undefined.