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 trial

JavaScript

react 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.

I 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

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi 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! :sparkles: