7 lines
176 B
TypeScript
7 lines
176 B
TypeScript
import { ShopContext } from "@dashboard/components/Shop";
|
|
import { useContext } from "react";
|
|
|
|
function useShop() {
|
|
return useContext(ShopContext);
|
|
}
|
|
export default useShop;
|