Home »
MCQs »
Full Stack Development MCQs
Props in react are ____
32. Props in react are ____.
- Props are just arguments for different components
- Props are local variables in a function
- Props are used to pass data from parent components to child components
- None of the above
Answer: C) Props are used to pass data from parent components to child components.
Explanation:
Props are the arguments passed in react components. Props are a fundamental part of the React component system and play a crucial role in building reusable and maintainable UI components.