React Basics
React basics are a triangle: a component, props in, state inside. Item shows Price (prop amount) and a qty state. Click + → qty 2 → amount 98. If you can draw that on paper, you are past ‘hello world’.
Add lists+keys and one useEffect fetch later. Skip Redux until this triangle is boring.
On screen — ₹49 then + → ₹98. Price is props. qty is state. That triangle is ‘React basics’.
index.html #root
│ createRoot
▼
App
│
▼
childrenExam tip
Draw the triangle with a qty example.