As per React docs, they are not recommending to use the key as an index. but is there any issue with using the index and a string value. like below one,
transactionDetail.map((item,index) => <div key={`transaction-{index}`}>{trName}</div>)
is there any issue with using like this?