feat(ui): collapsible layers

This commit is contained in:
psychedelicious
2024-04-30 19:45:09 +10:00
committed by Kent Keirsey
parent cf1883585d
commit d74cd12aa6
12 changed files with 58 additions and 30 deletions

View File

@ -0,0 +1,3 @@
export const stopPropagation = (e: React.MouseEvent) => {
e.stopPropagation();
};