Workspaces layout, automation page

This commit is contained in:
2026-02-18 17:04:32 +00:00
parent 89f23f9426
commit 485ae4c3d7
89 changed files with 2168 additions and 514 deletions
+1
View File
@@ -1,4 +1,5 @@
export { useGlobal } from './useGlobal';
export { usePanelChannel } from './usePanelChannel';
export { useClient, createClient } from './useClient';
export { useDebounce } from './useDebounce';
export { useDragAndDrop } from './useDragAndDrop';
@@ -0,0 +1,5 @@
import { useGlobal } from './useGlobal';
export const usePanelChannel = <T>(channel: string, initialData: T) => {
return useGlobal<T>(['PANEL_CHANNEL', channel], initialData);
};