UNPKG

ze-react-component-library

Version:
8 lines (7 loc) 216 B
import { createContext } from "react"; export default function useService(func, initialValue) { if (initialValue === void 0) { initialValue = undefined; } return /*#__PURE__*/createContext(initialValue); }