UNPKG

html-to-react-events

Version:

Convert HTML event names to React event handler names.

8 lines (7 loc) 233 B
export type TouchEvent = 'touchcancel' | 'touchend' | 'touchmove' | 'touchstart'; export default { 'touchcancel': 'onTouchCancel', 'touchend': 'onTouchEnd', 'touchmove': 'onTouchMove', 'touchstart': 'onTouchStart' };