UNPKG

@supunlakmal/hooks

Version:

A collection of reusable React hooks

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