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 trialJudith Tchatchoua
305 PointsMy code is not running on the browser.
My code is not running on the browser: here is my code:
var PLAYERS=[ { name:"Judith", score: 12, id:1, },
{ name:"Dodo", score: 45, id:2, },
{ name:"Mickaelle", score: 22, id:3, },
]
function Header(props){ return( <div className="header"> <h1>{props.title}</h1> </div> ); }
Application.propType={ title=React.Proptype.string, player=React.PropType.arrayOf(React.PropTypes.object.shape( name:React.PropType.string.isRequired, score: React.PropType.number.isRequired,)
).isRequired,
id=React.PropTypes.number.isRequired, }
Header.propTypes={ title: React.PropTypes.string.isRequired, };
function Counter(props){ return( <div className="counter"> <button className="counter-action decrement"> - </button> <div className="counter-score"> {props.score} </div> <button className="counter-action increment"> + </button> </div> ); }
Counter.propTypes={ score: React.PropTypes.number.isRequired, };
function Player(props){ <div className="players"> <div className="player"> <div className="player-name"> {props.name} </div> <div className="player-score"> <Counter score=props.score /> </div> </div> };
Player.propTypes={ name: React.PropTypes.string.isRequired, score: React.PropTypes.number.isRequired, };
function Application(props) {
return (
<div className="scoreboard">
<Header title=props.title/>
<div className="player">
{props.players.map(Function(players){
return <Player name={player.name} score={player.score} key={player.id} />
})
</div>
</div>
);
}
ReactDOM.render(<Application title="Scary Board" players={PLAYERS} />, document.getElementById('container'));
1 Answer
Cameron O'Brien
11,564 PointsIt looks like maybe it could be a spelling error. In your Application.propType underneath your Header function you have:
Application.propType={ title=React.Proptype.string, player=React.PropType.arrayOf(React.PropTypes.object.shape( name:React.PropType.string.isRequired, score: React.PropType.number.isRequired,)
).isRequired,
id=React.PropTypes.number.isRequired, }
It looks like you need to change your 'propType' to be 'propTypes' like:
Application.propTypes = {
title: React.PropTypes.string,
players: React.PropTypes.arrayOf(React.PropTypes.shape({
name: React.PropTypes.string.isRequired,
score: React.PropTypes.number.isRequired,
id: React.PropTypes.number.isRequired,
})).isRequired,
};