TelegramPWA/src/util/stopEvent.ts
2026-02-22 23:48:03 +01:00

7 lines
143 B
TypeScript

const stopEvent = (e: React.UIEvent | Event | React.FormEvent) => {
e.stopPropagation();
e.preventDefault();
};
export default stopEvent;