Q. What will happen if two React components have the same key in a list?
β
Correct Answer: (B)
It will cause re-rendering issues
Explanation: Duplicate keys in lists can confuse React during reconciliation, causing unexpected behavior.