Skip to content

Back to Blog Listing

Posts tagged: react-internals

  • How React Skips Work

    React can avoid rendering parts of the fiber tree when props, state, and context dependencies have not changed. Manual memoization, React Compiler, and React Developer Tools all help you control and measure that skipped work.

    Ben Houston

  • How React Renders

    React represents UI as fibers, reconciles current and work-in-progress trees, preserves component state with types and keys, and stores hooks by call order.

    Ben Houston

  • React Beyond the DOM

    React prioritizes and interrupts fiber work, coordinates Suspense, and applies one reconciler to DOM, native, and Three.js targets through renderer host configs.

    Ben Houston