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 Basics (2018) First Steps in React Render an Element

I dont know but any of my element is not rendering on browser

element is not rendering to the browser

Please post your code or repo so we may take a look

app.js
const desc = 'I just learned how to create a React node and render it into the DOM';
const myTitleID = 'main-title';
const name = 'Samit';
const header = (
    <header>
      <h1 id={myTitleID}>{ name }'s First React Element! </h1>
      <p>{ desc }</p>
    </header>

);

ReactDOM.render(
    header,
    document.getElementById('root')
);
index.html
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Scoreboard</title>
    <link rel="stylesheet" href="./app.css" />
  </head>

  <body>
    <div id="root"></div>


    <script crossorigin src="https://unpkg.com/react@16/umd/react.development.js"></script>
    <script crossorigin src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
    <script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
    <script type="text/babel" src="./app.js"></script>
  </body>
</html>

code seems good and its not giving any error in console but i dont know why its not rendering any elements

Copied your code and inserted into workspaces and it worked. Not sure why it's not showing on your end.

Try cutting it and pasting it. Sometimes workspaces can act a little funny.

actually its working fine in Workspaces. its not working on my server, i mean on my system

2 Answers

Karolin Rafalski
Karolin Rafalski
11,368 Points

When running a simple http server, sometimes the previous code gets cached, so you don't see your latest changes. Try a hard reload (shift command r on mac) or two finger click (mac) (right click? on PC?) on the refresh button on the browser (choose 'hard reload')

Usman Mehmood
seal-mask
.a{fill-rule:evenodd;}techdegree
Usman Mehmood
Full Stack JavaScript Techdegree Student 14,330 Points

You would need to make sure the browser isn't loading cached files.

To this using http-server, you would need to set it to a port you haven't used before and use the -c-1 command

Example:

http-server -c-1 -p 4000