How to manage focus and accessibility (a11y) in React?
Answer
•Use semantic elements (button, label).
•Manage focus via ref.
•In modals, implement focus trap.
•Add aria-* attributes only when needed.
•Test with keyboard and screen reader.
Was this answer helpful?