Skip to content

Instantly share code, notes, and snippets.

@leontastic
Created November 29, 2023 15:12
Show Gist options
  • Save leontastic/32a8366de4d51d5c98dd54a0bb7ee959 to your computer and use it in GitHub Desktop.
Save leontastic/32a8366de4d51d5c98dd54a0bb7ee959 to your computer and use it in GitHub Desktop.
helpful utility to handle `event.preventDefault` in react
import React from 'react';
export const preventDefault = (
handler: React.EventHandler<React.SyntheticEvent>,
): React.EventHandler<React.SyntheticEvent> => (event) => {
event.preventDefault();
handler(event);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment