mirror of
https://github.com/stoatchat/for-legacy-web.git
synced 2026-03-07 17:35:28 +00:00
5 lines
151 B
TypeScript
5 lines
151 B
TypeScript
export const stopPropagation = (ev: JSX.TargetedMouseEvent<HTMLDivElement>, _consume?: any) => {
|
|
ev.preventDefault();
|
|
ev.stopPropagation();
|
|
};
|