mediumFrontend

Explain the concept of reconciliation in React.

1.0k views
01

Understand the problem

This question checks the candidate's understanding of React's core algorithm for updating the UI efficiently.

virtual domreconciliationdiffingrendering
02

Attempt it yourself

Sketch your approach before reading the solution — that's what interviews test.

Stuck? AI Nudge Available

Get a conceptual hint to guide your logic without spoiling the final implementation.

03

Study the solution

The solution is waiting

Give it an honest attempt first — then compare your thinking with the full walkthrough.

04

Read the code

Type change unmounts; same type preserves
import { useState } from "react";

function Box({ children }) {
  // input state lives in the DOM of this subtree
  return <div style={{ border: "1px solid #ccc", padding: 12 }}>{children}<input /></div>;
}

export default function App() {
  const [asSection, setAsSection] = useState(false);
  // Toggling the WRAPPER type (div ↔ section) changes the element type at this
  // position → React rebuilds the subtree and the <input> resets.
  const Wrapper = asSection ? "section" : "div";
  return (
    <div style={{ padding: 24, fontFamily: "system-ui" }}>
      <Wrapper><Box>Type some text, then toggle:</Box></Wrapper>
      <button onClick={() => setAsSection((s) => !s)}>Toggle wrapper type</button>
    </div>
  );
}
05

Join the discussion

Discussion (0)

Sign in to join the discussion.

No responses yet. Be the first to share what you think.