What are the Pointer Events supported in React?
- Both mouse and touch events
- Mouse events only
- None of the above
- Touch events only
React supports both mouse and touch events through the use of Pointer Events. Pointer Events are a standardized event model that provide a unified way to handle mouse, touch, and stylus input. React provides a set of event handlers for Pointer Events, such as "onPointerDown" and "onPointerMove", that can be used to create responsive and touch-friendly user interfaces.
Loading...