saleor-dashboard/src/hooks/useShop.ts

8 lines
176 B
TypeScript
Raw Normal View History

import { ShopContext } from "@dashboard/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;