InterviewSolution
Saved Bookmarks
| 1. |
What are Props and how is it used in React Native? |
|
Answer» Props are means to the PARAMETERS that are used for customizing the component when the component is being created or re-rendered. They are more like the argument which is passed to the React component. Exampleimport React, {Component} from 'react'; EXPORT default DefaultPropComponent; |
|