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 trialJason Herscovici
8,683 Pointsgetting error when placing elements in {}
hey guys i'm getting the following error:
app.js:4 Uncaught TypeError: header is not a function at <anonymous>:14:14 at i (babel.min.js:24) at r (babel.min.js:24) at e.src.n.<computed>.l.content (babel.min.js:24) at XMLHttpRequest.n.onreadystatechange (babel.min.js:24)
anyone know how to fix this? (everything was working before I used the {} notation instead of entering the elements
this is my code :
const title = <h1>my first react element</h1>; const desc = <p>i just learned how to create a react node and render it</p> ;
const header = header( <header> <h1>{ title }</h1> <p> { desc }</p> </header> );
ReactDOM.render ( header, document.getElementById('root') )
1 Answer
Peter Vann
36,427 PointsHi Jason!
Look for clues in the error message.
This one says this: "header is not a function" at one point.
That tells me you have some syntax that is trying to use header as a function - somthing like:
header();
So your issue is here:
const header = header( <header> <h1>{ title }</h1> <p> { desc }</p> </header> );
If you rewatch the video, you don't type the second "header" in the code.
It should be:
const header = (
<header> <h1>{ title }</h1> <p> { desc }</p> </header>
);
I hope that helps.
Stay safe and happy coding!
Jason Herscovici
8,683 PointsJason Herscovici
8,683 PointsThank you!