A React.js case study

added by JavaScript Kicks
9/1/2014 10:53:35 AM

202 Views

We'll now walk through each of the five React components, and how they map to the fundamental React principle; initial data that won't change should be passed to a component as a property, while changing data should be handle in a component's state. If we need to communicate from a child to a parent, we do this by calling a callback that was passed to the child as a property.


0 comments