Create order in admin

This commit is contained in:
hamid zarghami
2026-02-01 10:02:45 +03:30
parent 2ced4666c8
commit 5c536667b1
18 changed files with 712 additions and 4 deletions
+9
View File
@@ -0,0 +1,9 @@
import { create } from "zustand";
import type { StoreType } from "../type/Types";
export const useOrderStore = create<StoreType>((set) => ({
items: [],
setItems(value) {
set({ items: value });
},
}));