mirror of
https://github.com/revoltchat/revite.git
synced 2025-02-23 16:50:56 -05:00
4 lines
151 B
TypeScript
4 lines
151 B
TypeScript
export const stopPropagation = (ev: JSX.TargetedMouseEvent<HTMLDivElement>, _consume?: any) => {
|
|
ev.preventDefault();
|
|
ev.stopPropagation();
|
|
};
|