If you have spent any time in React, you have seen the yellow warning in your console: “Each child in a list should have a unique ‘key’ prop.” It sounds like a polite suggestion, but React is actually warning you that it cannot tell your list items apart. Ignore it, and you will eventually ship a bug that is maddening to reproduce—state jumping to the wrong row, text inputs losing focus, or animations firing on the wrong element.

React’s rendering engine does not compare your UI pixel by pixel. It builds a lightweight tree of objects called the virtual DOM, compares the new tree to the previous one, and calculates the smallest set of changes needed for the real DOM. When you render a list, React sees an array of sibling elements. Without keys, it has no reliable way to know whether an item moved, was replaced, or was removed. It defaults to matching by position, which is fragile. Keys act as stable identities. They tell React, “This element is the same one as before, even if it is now in a different slot.” Get this wrong, and you trade deterministic updates for guesswork.

The Minimum Fix

The warning usually appears inside a map call. You must assign a unique value to the key attribute on the top-level element returned from the iterator.

Here is the pattern you see in every codebase that triggers the warning:

const UserList = ({ users }) => {
  return (
    <ul>
      {users.map((user) => (
        <li>{user.name}</li>
      ))}
    </ul>
  );
};

React sees three <li> tags and has no idea which is which. The correction is one attribute:

const UserList = ({ users }) => {
  return (
    <ul>
      {users.map((user) => (
        <li key={user.id}>{user.name}</li>
      ))}
    </ul>
  );
};

The key must be assigned to the element directly inside the map callback. If you extract the <li> into a separate UserItem component, the key still belongs on the component at the call site:

{users.map((user) => (
  <UserItem key={user.id} user={user} />
))}

Placing the key inside UserItem on its internal <div> will not silence the warning and will not fix the reconciliation behavior. React looks for the key on the element returned by the iterator.

Why Index as a Key Is Dangerous

It is tempting to silence the warning by reaching for the second argument of map:

{users.map((user, index) => (
  <li key={index}>{user.name}</li>
))}

This removes the console noise, but it does not solve the underlying problem. Array indices are not identities. They are positions, and positions change.

Imagine a list of three users rendered in this order:

  1. Alice (index 0)
  2. Bob (index 1)
  3. Charlie (index 2)

If you delete Alice, Bob shifts to index 0 and Charlie shifts to index 1. React compares the new tree to the old tree. It sees that index 0 now holds Bob’s data, so it mutates the existing DOM node that previously showed Alice. If that node had focus, the cursor stays in the first row, but the text changes to Bob. If the row contained an <input> with local state, that state remains stuck to index 0. The user types into what looks like Bob’s row, but the state belonged to Alice. The same chaos happens when you sort, filter, or prepend items. The only safe place for an index key is a list that is truly static: no reordering, no filtering, no inserting, and no deleting. Hardcoded navigation links that never change are a fair example. Everything else needs a real identifier.

Where to Find a Stable Key

The best key is a unique identifier that already exists in your data model. Database primary keys like id are ideal because they are guaranteed unique and they survive across renders. If your backend returns objects with uuid, slug, or some other naturally unique field, use that instead.

When your API response lacks any unique field, you have two practical paths. First, talk to your backend team and ask them to include an id. Shipping relational data without a primary key is a smell, and fixing it at the source removes ambiguity everywhere in your stack. Second, if you are generating items entirely on the client side—say, a todo list where users create tasks before anything hits the server—generate an ID once at creation time. Libraries like uuid or nanoid are built for exactly this. Generate the ID when the user submits the form, store it on the object, and use it for the key forever.

Never generate a key inside the render path. Calling Math.random() or Date.now() during a component render produces a new value on every pass. React sees a new key, assumes it is a brand new element, destroys the old DOM node, and creates a fresh one. Any state inside that element resets. Focus is lost. Performance tanks because React is doing unnecessary DOM work. A randomly generated key is worse than no key at all.

Fragments, Components, and Scope

एक कम स्पष्ट जाल React Fragments से संबंधित है। यदि आप डेटा पर मैप (map) करते हैं और बिना किसी रैपर <div> के कई सिबलिंग (sibling) एलिमेंट्स को वापस करना चाहते हैं, तो आप शॉर्ट सिंटैक्स का उपयोग कर सकते हैं:

{items.map((item) => (
  <>
    <dt>{item.term}</dt>
    <dd>{item.definition}</dd>
  </>
))}

शॉर्टहैंड <>...</> प्रॉप्स (props) को सपोर्ट नहीं करता है, जिसका अर्थ है कि आप इसमें 'key' नहीं जोड़ सकते। इस स्थिति में, पूर्ण स्पष्ट सिंटैक्स (full explicit syntax) का उपयोग करें:

{items.map((item) => (
  <React.Fragment key={item.id}>
    <dt>{item.term}</dt>
    <dd>{item.definition}</dd>
  </React.Fragment>
))}

React को Fragment पर उस key की आवश्यकता होती है ताकि वह रेंडर्स (renders) के दौरान उस जोड़ी को एक एकल इकाई (single unit) के रूप में ट्रैक कर सके।

एक और सूक्ष्म बिंदु: keys सामान्य अर्थों में प्रॉप्स नहीं हैं। यदि आप <ListItem key={item.id} /> लिखते हैं, तो ListItem कंपोनेंट props.key को नहीं पढ़ सकता। React इसे बुककीपिंग (bookkeeping) के लिए आंतरिक रूप से उपयोग करता है। यदि आपके कंपोनेंट को अपने स्वयं के लॉजिक के लिए वास्तव में उस आइडेंटिफायर (identifier) की आवश्यकता है, तो इसे किसी अन्य नाम के तहत अलग से पास करें, जैसे कि itemId

आपको सुरक्षित रखने के लिए व्यावहारिक नियम

  • डेटाबेस IDs को प्राथमिकता दें। वे अद्वितीय (unique), संख्यात्मक (numeric) या स्ट्रिंग-आधारित होते हैं, और स्थिर (stable) होते हैं।
  • केवल क्लाइंट-ओनली डेटा के लिए uuid या nanoid का उपयोग करें। ID को केवल एक बार रिकॉर्ड बनाते समय जेनरेट करें, कंपोनेंट रेंडर के अंदर नहीं।
  • यदि लिस्ट बदल सकती है, तो कभी भी array index से key न निकालें (derive न करें)। सॉर्टिंग, फ़िल्टरिंग और डिलीट करने से विजुअल और स्टेट बग्स (visual and state bugs) आ सकते हैं।
  • कभी भी Math.random(), Date.now(), या किसी ऐसे मान का उपयोग न करें जो रेंडर्स के बीच बदलता हो। यह अनावश्यक अनमाउंटिंग (unmounting) और रीमाउंटिंग (remounting) को मजबूर करता है।
  • याद रखें कि Fragments को लंबे रूप (long form) की आवश्यकता होती है यदि वे map के अंदर हैं और उन्हें key की आवश्यकता है।
  • key को map द्वारा लौटाए गए एलिमेंट पर रखें, न कि किसी चाइल्ड कंपोनेंट के अंदर।

मुख्य निष्कर्ष (The Real Takeaway)

key प्रॉप कोई सजावटी lint नियम नहीं है। यह वह तरीका है जिससे React रेंडर्स के दौरान पहचान (identity) बनाए रखता है। इसे डेटाबेस टेबल में प्राइमरी की (primary key) की तरह समझें। जब वह पहचान स्थिर होती है, तो React तत्वों को सटीक रूप से मूव, अपडेट और हटा सकता है। जब यह गायब या अस्थिर होती है, तो आपको दूषित UI स्टेट और सुस्त रिकॉन्सिलिएशन (sluggish reconciliation) के रूप में इसकी कीमत चुकानी पड़ती है। इसे एक बार डेटा लेयर पर ठीक कर दें, और आपकी लिस्ट चाहे कितनी भी बढ़ें या बदलें, वे अनुमानित (predictably) तरीके से व्यवहार करेंगी।