title: “Basic Gist of React” tags:

  • react
  • basic
  • how-to
  • fundamentals

React is based on UI by components Components are basically “sections ” or “divisions” of a website as illustrated below %%🖋 Edit in Excalidraw, and the dark exported image%% Furthermore these components have two parts:

  • State
    • It relates to the how the component is present, if something is interacting to it. What should be done if interacted with and so on
  • Props
    • Deals with the information with the component, Paragraphs, names, prices.

Thinking In React

source