Q. Which of these is a valid way to pass props to a component?
Code:<MyComponent title="React" />
β
Correct Answer: (C)
<MyComponent title="React" />
Explanation: Props are passed to components using JSX attributes like in HTML.