UNPKG

@supunlakmal/hooks

Version:

A collection of reusable React hooks

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