Reading-Notes

Class 01: Introduction to React and Components


Component-Based Architecture

A component is a software object, intended to interact with other components, 
encapsulating certain functionality or a set of functionalities. It has an obviously 
defined interface and conforms to a recommended behavior common to all components within an architecture.


What is Props and How to Use it in React?

Things I want to know more about

- How do components interact while on different pages that need to interact with 
each other. Does passing data from one component to the other get tricky when dealing with login and stuff?