Duplicate JSX properties detectedJS-0419
Creating JSX elements with duplicate props can cause unexpected behavior in your application. From the duplicates properties, the last value will be honored by React framework. This may cause your application to have undesired behavior.
Bad Practice
<Hello name="John" name="John" />;
Recommended
<Hello firstname="John" lastname="Doe" />;