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 trialMichal Janek
Front End Web Development Techdegree Graduate 30,654 PointscreateClass is going to be deprecated in React v16 Are we left with stateless functional and react.Component only?
I am thinking for the time being to use only ES6 Class Component
class XY extends React.Component {}
way of creating components and not using the
const XY (props) => {
return (<JSX/>)
}
Since I can use the state feature in the former in case I will need it later on, does anyone know any reason, drawbacks why should we use the latter other than it simpler structure?