UNPKG

@supunlakmal/hooks

Version:

A collection of reusable React hooks

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