I'm rendering a list in my react app where:
- Only new elements will be appended to the end of the list.
- Every time an element is removed, it will only be the last element.
Given these conditions as well as not having the intention to reorder elements in any way. Can I use the index as the key prop without having any problem?