0 votes
in ReactJS by

What is React.createClass?

1 Answer

0 votes
by

React.createClass allows us to generate component "classes." But with ES6, React allows us to implement component classes that use ES6 JavaScript classes. The end result is the same -- we have a component class. But the style is different. And one is using a "custom" JavaScript class system (createClass) while the other is using a "native" JavaScript class system.

When using React’s createClass() method, we pass in an object as an argument. 

Related questions

0 votes
asked May 20, 2020 in ReactJS by GeorgeBell
0 votes
asked May 20, 2020 in ReactJS by SakshiSharma
...