React Guideline: Performance — Virtualize long lists. Description: Use windowing for lists over 100 items. Do: react-window or react-virtual. Don't: Render thousands of DOM nodes. Good Example: <VirtualizedList items={items}/>. Bad Example: {items.map(i => <Item />)}. Severity: High. Docs: .