Add MissionForm WIP

This commit is contained in:
nocnico
2025-04-21 17:46:08 +02:00
parent 9b4e3085c3
commit b19cc864d3
4 changed files with 308 additions and 7 deletions

View File

@@ -7,6 +7,6 @@ interface PannelStore {
}
export const usePannelStore = create<PannelStore>((set) => ({
isOpen: false,
isOpen: true, // DEBUG, REMOVE LATER FOR PROD
setOpen: (isOpen) => set({ isOpen }),
}));