saleor-dashboard/src/hooks/useShop.ts

8 lines
173 B
TypeScript
Raw Normal View History

2019-08-12 09:38:01 +00:00
import { ShopContext } from "@saleor/components/Shop";
import { useContext } from "react";
2019-06-19 14:40:52 +00:00
function useShop() {
2019-08-12 09:38:01 +00:00
return useContext(ShopContext);
2019-06-19 14:40:52 +00:00
}
export default useShop;