Files
unicorn-utterances/content/blog/react-internals-understanding-the-reconciler/index.md
2023-02-27 00:38:38 -08:00

13 KiB

title, description, published, authors, tags, attached, license
title description published authors tags attached license
React Internals: Understanding the Reconciler 2023-05-05T13:45:00.284Z
crutchcorn
react
cc-by-nc-sa-4

React 18.2.0 source code: 9e3b772b8c

Only focusing on React DOM code

ReactDOM.createRoot(document.getElementById("root")).render(
  <React.StrictMode>
    <App />
  </React.StrictMode>
);