Initial pannel layout
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
"use client";
|
||||
import { create } from "zustand";
|
||||
|
||||
interface PannelStore {
|
||||
@@ -6,6 +7,6 @@ interface PannelStore {
|
||||
}
|
||||
|
||||
export const usePannelStore = create<PannelStore>((set) => ({
|
||||
isOpen: true,
|
||||
isOpen: false,
|
||||
setOpen: (isOpen) => set({ isOpen }),
|
||||
}));
|
||||
|
||||
Reference in New Issue
Block a user