file name and location updayed for better be

This commit is contained in:
nabijonovdavronbek619@gmail.com
2026-03-07 16:31:18 +05:00
parent b838025ab0
commit 809438735f
82 changed files with 87 additions and 470 deletions

22
zustand/useCategory.ts Normal file
View File

@@ -0,0 +1,22 @@
import { CategoryType } from "@/lib/types";
import { create } from "zustand";
interface CategoryZustandType {
category: CategoryType;
setCategory: (category: CategoryType) => void;
clearCatalog: () => void;
}
const demoCategory: CategoryType = {
id: 0,
name: "",
description: "",
image: "",
have_sub_category: false,
};
export const useCategory = create<CategoryZustandType>((set) => ({
category: demoCategory,
setCategory: (data) => set({ category: data }),
clearCatalog: () => set({ category: demoCategory }),
}));