DevTools/CodingStandards: Difference between revisions

no edit summary
(Add link to more info about PropTypes)
No edit summary
Line 154: Line 154:
=== Components ===
=== Components ===
* Default to creating components as [https://facebook.github.io/react/docs/reusable-components.html#stateless-functions stateless function components].  
* Default to creating components as [https://facebook.github.io/react/docs/reusable-components.html#stateless-functions stateless function components].  
* If you need local state, lifecycle methods, or to access the DOM node, you’ll need to use a class-based component instead. Make sure there is a comment explaining why you needed it.
* If you need local state, lifecycle methods, or to access the DOM node, you’ll need to use a class-based component instead.


=== PropTypes ===
=== PropTypes ===
Confirmed users
508

edits