bug修改

This commit is contained in:
Developer
2026-05-12 20:27:30 +08:00
parent b0929a8094
commit 53c67079a1
23 changed files with 1026 additions and 387 deletions

View File

@@ -0,0 +1,11 @@
import { create } from "zustand";
interface VisibleBigKeyState {
key: string | null;
setKey: (key: string | null) => void;
}
export const useVisibleBigKeyStore = create<VisibleBigKeyState>((set) => ({
key: null,
setKey: (key) => set({ key }),
}));