mirror of
https://github.com/stoatchat/for-legacy-web.git
synced 2026-03-07 09:25:27 +00:00
10 lines
212 B
TypeScript
10 lines
212 B
TypeScript
export const stopPropagation = (
|
|
ev: JSX.TargetedMouseEvent<HTMLElement>,
|
|
// eslint-disable-next-line
|
|
_consume?: unknown,
|
|
) => {
|
|
ev.preventDefault();
|
|
ev.stopPropagation();
|
|
return true;
|
|
};
|