React Guideline: Events — Avoid binding in render. Description: Use arrow functions in class or hooks. Do: Arrow functions in functional components. Don't: bind in render or constructor. Good Example: const handleClick = () => {}. Bad Example: this.handleClick.bind(this). Severity: Medium. Docs: .