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) Thinking in Components Create a Component

Functions vs ES6 classes

Wouldn't it be better to create components with ES6 classes? That seems to make more sense to me.

I don't know if this video was made before ES6 was released, but I noticed in the teachers notes both are possible. Which one is preferred in the React community, and why did Treehouse choose to only show how to create one with a JavaScript function?

1 Answer

Robert Manolis
STAFF
Robert Manolis
Treehouse Guest Teacher

Hi Tom, the React Basics course covers a few different ways of creating elements and components in React. And you'll learn even more about that in later videos in that course and more advanced React courses and workshops here at Treehouse. It's important to be familiar with multiple techniques and approaches.

But ever since the introduction of hooks in React 16, the React community has been moving away from class components and towards function components since they tend to be simpler and require less code.

Hope that helps. :smiley:

Thank you, I still have to learn about hooks. Exciting stuff!