React: How To Access Props In A Functional Component

Phil Andrews
2 min readOct 25, 2017

--

Props is short for properties. You give properties to components. Just like your parents gave you your eye color your components in React give properties to their children. Everything flows downhill. Children components do not give props back to their parents.

Imagine you have two React components. A Parent and a Child. A parent gives, a child receives.

--

--