React Guideline: ErrorHandling — Handle async errors. Description: Catch errors in async operations. Do: try/catch in async handlers. Don't: Unhandled promise rejections. Good Example: try { await fetch() } catch(e) {}. Bad Example: await fetch() // no catch. Severity: High. Docs: .