InterviewSolution
Saved Bookmarks
| 1. |
What are pure components in React Native? |
|
Answer» A React COMPONENT can be viewed as pure on the CHANCE that it renders a SIMILAR output for a similar STATE and props. Class components that extend the React are PureComponent class that is treated as pure components. |
|