You have already completed these exercises!
Do you want to take them again?
You completed the React Props Exercises from W3Schools.com
Share on:
Which one is a correct way of sending the value 'John' via the 'firstname' property to the Person component?
root.render(<Person firstname='John' />);
root.render(<Person props(firstname='John') />);
root.render(Person(firstname='John'));