Each Child in a List Should Have a Unique ‘key’ Prop – How to fix

Warning: Each Child in a List Should Have a Unique ‘key’ Prop occurs in react when we create a list of elements without giving a key for each element. This special key is used by React primarily for performance enhancements. The keys must be different for each sibling. What is a key in react?🤔 Key…