mirror of
https://github.com/revoltchat/revite.git
synced 2024-12-28 08:14:46 -05:00
5 lines
151 B
TypeScript
5 lines
151 B
TypeScript
|
export const stopPropagation = (ev: JSX.TargetedMouseEvent<HTMLDivElement>, _consume?: any) => {
|
||
|
ev.preventDefault();
|
||
|
ev.stopPropagation();
|
||
|
};
|