View on GitHub

reading-notes

My learning journal for Code Fellows

Intro to React and Components

Component based architecture

What is a component?

A component is a modular, portable, reusable piece of code that is meant to interact with other components. It has a standard form setup so that it can interface with other pieces of code.

What are the characteristics of a component?

What are the advantages of components?

Props and How to use them in React

What are “props” short for?

Props are short for properties, and is used for passing data from one component to the other.

How are props used in React?

Props are essentially thing that carries the necessary information into a React component so that it can carry out the functionality that it was designed to do.

What is the flow of props?

Because react has a one way DOM flow, props can only flow from parent to child, not the other way around.

Things I want to know more about