Which of the following is NOT a common use case for HOCs?
Directly modifying the DOM is not a common use case for HOCs. HOCs should follow React's principles and avoid direct DOM manipulation. Instead, they typically enhance components with additional props, state, or behavior while respecting React's declarative paradigm.