Slide 10
Slide 10 text
React Fiberについて - FiberRootNodeとFiberNode
https://jser.dev/2023-07-14-initial-mount/#1-brief-introduction-on-fiber-architecture
Fiber Nodeの要素
● tag → HostRootやFunctionComponentなど識別子
● stateNode → 実際のDOM Nodeへの参照
● child、sibling、return → 他FiberNodeとの関連
● lanes、childLanes → 更新の優先度
● memoizedState → hookに関するデータ
など