saleor-dashboard/src/hooks/useBackgroundTask.ts
2020-06-26 13:09:56 +02:00

8 lines
231 B
TypeScript

import BackgroundTasksContext from "@saleor/containers/BackgroundTasks/context";
import { useContext } from "react";
function useBackgroundTask() {
return useContext(BackgroundTasksContext);
}
export default useBackgroundTask;