chore: remove luckysheet integration
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
"use client";
|
||||
|
||||
import { create } from "zustand";
|
||||
|
||||
interface PageLayoutState {
|
||||
showInspector: boolean;
|
||||
toggleInspector: () => void;
|
||||
setInspector: (visible: boolean) => void;
|
||||
}
|
||||
|
||||
export const usePageLayoutStore = create<PageLayoutState>((set) => ({
|
||||
showInspector: true,
|
||||
toggleInspector: () =>
|
||||
set((state) => ({
|
||||
showInspector: !state.showInspector,
|
||||
})),
|
||||
setInspector: (visible) => set({ showInspector: visible }),
|
||||
}));
|
||||
Reference in New Issue
Block a user