1. Why are keys important when rendering lists in React Native?
Keys help React efficiently update lists by identifying which items changed between renders. Without keys, React may re-render items unnecessarily, hurting performance.
data.map(item => <Text key={item.id}>{item.name}</Text>)