DocumentationRulesjsx-no-duplicate-props

jsx-no-duplicate-props

Rule category

Correctness.

What it does

This rule prevents the use of duplicate props in JSX elements.

Examples

Failing

<Hello name="John" name="Doe" />;

Passing

<Hello name="John" />;