2024-03-22 16:06:56 +00:00
|
|
|
/**
|
|
|
|
* A shortcut for executing directly in the component: stopPropagation
|
|
|
|
*/
|
|
|
|
export function stopPropagation(e: Event) {
|
|
|
|
e.stopPropagation();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A shortcut for executing directly in the component: preventDefault
|
|
|
|
*/
|
|
|
|
export function preventDefault(e: Event) {
|
|
|
|
e.preventDefault();
|
|
|
|
}
|
2024-05-06 14:18:19 +00:00
|
|
|
|
|
|
|
export const rootEl = document.getElementById('root');
|