What is the point of using keys in React?

Technology CommunityCategory: ReactWhat is the point of using keys in React?
VietMX Staff asked 3 years ago

It allows for more efficient rendering of lists, so that React can reuse DOM elements without having to destroy + recreate them when lists change (slightly) in the UI.