subcategory zustand fixed and created product zustand for get product detail information

This commit is contained in:
nabijonovdavronbek619@gmail.com
2026-02-05 20:08:13 +05:00
parent 34cb524626
commit e99df29b81
2 changed files with 19 additions and 1 deletions

View File

@@ -14,5 +14,5 @@ const demoSubCategory = {
};
export const useSubCategory = create<SubCategoryZustandType>((set) => ({
subCategory: demoSubCategory,
setSubCategory: (data) => set({}),
setSubCategory: (data) => set({ subCategory: data }),
}));