reading-notes

Dive into React Prep Work

  1. React is a User Interface Library. Used for creating user interfaces. Doesn’t care where your UI will display(Agnostic)

  2. A component is a piece of code that fills a certain part of the user interface that the dev is building

  3. The dataflow in react is a one way dataflow.

  4. We make a react element a DOM element by passing it through reactDOM.

  5. React is an agnostic User Interface Library?

  6. Data flows down one way in React.

  7. Every component manages its own state and pass it down to its children.