JSX elements cannot have multiple attributes with the same name. TS17001 code example
Example: JSX elements cannot have multiple attributes with the same name. TS17001
<!-- InCorrect -->
<img src="images/a.jpg" src="ime" />
<!-- Correct -->
<img src="images/a.jpg" alt="ime" />