UNPKG

@supunlakmal/hooks

Version:

A collection of reusable React hooks

5 lines 212 B
import { useFetch } from './useFetch'; export const usePatch = (url, options) => { return useFetch(url, Object.assign(Object.assign({}, options), { method: 'PATCH' })); }; //# sourceMappingURL=usePatch.js.map