Does the statics object work with ES6 classes in React?
- Yes, the statics object works with ES6 classes
- No, the statics object only works with React.createClass()
Yes, the statics object works with ES6 classes in React. The statics object is used to define static properties for a React component, such as defaultProps or propTypes. In ES6 classes, you can define static properties using the static keyword, like so: 'static defaultProps = {...}'. This is equivalent to using the statics object in React.createClass().
Loading...