reading-notes

Software Development Reading Notes

View on GitHub

React II

React - Conditional Rendering

This allows you to render part of components depends on the situation. same way condition works in JS.

All those methods can be used to control the content rendering.

React - Lists & Keys

React - Forms

React - Lifting State

We lift up state to a common ancestor of components that need it, so that they can all share in the state. 
This allows us to more easily share state among all of these components that need rely upon it.

Need to know more about this concept.

React - Composition vs Inheritance

Thinking in React