saleor-dashboard/src/hooks/useBackgroundTask.ts
2023-01-16 10:45:12 +01:00

8 lines
234 B
TypeScript

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