UNPKG

@supunlakmal/hooks

Version:

A collection of reusable React hooks

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