DocumentationRulesno-duplicate-key

no-duplicate-key

Rule category

Correctness.

What it does

Prevents duplicate key on elements in the same array or a list of children.

Why is this bad?

React uses keys to identify elements in an array. If two elements have the same key, React will not be able to distinguish them. This can lead to issues with state and rendering.

Examples

Failing

import React from 'react';
 
function Example () {
  return [
    <li key="1">Item 1</li>
    <li key="1">Item 2</li>
    //  ^^^^^^^
    //  - A key must be unique. '1' is duplicated.
  ]
};

Passing

import React from 'react';
 
function Example () {
  return [
    <li key="1">Item 1</li>
    <li key="2">Item 2</li>
  ]
};

Further Reading