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