2024-05-14 08:56:54 +00:00
|
|
|
import { useContext } from "react";
|
|
|
|
// lib
|
2024-05-18 10:52:53 +00:00
|
|
|
import { StoreContext } from "@/lib/store-provider";
|
2024-05-14 08:56:54 +00:00
|
|
|
// store
|
|
|
|
import { IProjectStore } from "@/store/project.store";
|
|
|
|
|
|
|
|
export const useProject = (): IProjectStore => {
|
|
|
|
const context = useContext(StoreContext);
|
|
|
|
if (context === undefined) throw new Error("useUserProfile must be used within StoreProvider");
|
|
|
|
return context.project;
|
|
|
|
};
|