🚀 Auto-deploy: BrainWind atualizado em 12/07/2026 16:37:46

This commit is contained in:
2026-07-12 16:37:46 +00:00
parent 9a60b0c499
commit 257099788e
14 changed files with 92 additions and 11 deletions
+11
View File
@@ -0,0 +1,11 @@
import { create } from 'zustand';
interface ViewerState {
isLocked: boolean;
toggleLock: () => void;
}
export const useViewerStore = create<ViewerState>((set) => ({
isLocked: false,
toggleLock: () => set((state) => ({ isLocked: !state.isLocked })),
}));