Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Laurence Cimosz
8,993 Pointsreact js app not working
why is this app not working
function Application() {
return (
<div className="application">
<div className="header">
<h1>Scoreboard</h1>
</div>
<div className="players">
<div className-"player">
<div className="player-name">
Larry Cimosz
</div>
<div className="player-score">
<div className="counter">
<button className="counter-action decrement"> - </button>
<div className="counter-score"> 31 </div>
<button className="counter-action increment"> + </button>
</div>
</div>
</div>
</div>
</div>
);
}
ReactDOM.render(<Application />, document.getElementById('container'));
Moderator edited: Markdown added so that code renders properly in the forums.
1 Answer

Jennifer Nordell
Treehouse TeacherHi there, Laurence Cimosz! It seems that on your fourth div you made a bit of a typo and put a hyphen where there was supposed to be an equal sign.
You wrote:
<div className-"player">
But you meant to write:
<div className="player">
Hope this helps!
Laurence Cimosz
8,993 PointsLaurence Cimosz
8,993 PointsI tried to copy and paste the code that I wrote for this app in workspace and its not showing the code correctly. I will try to copy and paste the code again. thank you