Reading-Notes

Reading Notes

Component-Based Architecture

What is a “component”?

A component is a modular, protable, replaceable, and reusable set of well-defined functionality that encapsulates its implementation and exporting it as a higher-level interface.

What are the characteristics of a component?

What are the advantages of using component-based architecture?

What is Props and How to Use it in React

What is “props” short for?

Properties

How are props used in React?

For passing data from one component to another.

What is the flow of props?

Uni-directional flow, from parent to child.