2020-06-23 15:36:47 +00:00
|
|
|
import { createContext } from "react";
|
2020-06-19 10:42:29 +00:00
|
|
|
|
|
|
|
import { BackgroundTasksContextType } from "./types";
|
|
|
|
|
|
|
|
const BackgroundTasksContext = createContext<BackgroundTasksContextType>(null);
|
|
|
|
|
|
|
|
export default BackgroundTasksContext;
|