@ace-fetch/react
Version:
react adapter for @ace-fetch/core.
19 lines (18 loc) • 760 B
JavaScript
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
import { jsx as _jsx } from "react/jsx-runtime";
import { FetchContext, setActiveFetch } from './context';
export var FetchProvider = function (props) {
// this allows calling useFetch() outside of a component setup after
setActiveFetch(props.fetch);
return _jsx(FetchContext.Provider, __assign({ value: { fetch: props.fetch } }, { children: props.children }));
};