Skip to the content.

Home Page

Class 01 Notes

Component Based Architecture

What is a component?

A component is software that is intended to interact with diferent software (other components). There three views of of components:

What are the characterisitics of a component?

The characteristics of a component are:

What are the advantages of using component based architecture?

The code that is made as a component is easier to deploy, reliability, independency, technical complexity.

What is Props and How to Use it in React

What is props short for?

Props is a keyword in React that stands for properties. Props is used to pass data from one component to another.

What is the flow of props?

The data flow of props is unidirectional. Since the information is read only, you can only take from and act on information from a component on a “higher level” than its own.

Things I want to know more about