Skip to content

Instantly share code, notes, and snippets.

@brian3814
brian3814 / ReactFiber.js
Last active June 6, 2023 19:00
React FiberNode
function FiberNode(
this: $FlowFixMe,
tag: WorkTag,
pendingProps: mixed,
key: null | string,
mode: TypeOfMode,
) {
// Instance
this.tag = tag;
this.key = key;