?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/bricolagevincennes.fr/wp-content/plugins/extendify/src/Launch/hooks/



?? Go up: /home/webdevt/www/bricolagevincennes.fr/wp-content/plugins/extendify/src/Launch

?? Viewing: useFetch.js

import useSWR from 'swr';

export const useFetch = (params, fetcher, options = {}) => {
	const { data, error } = useSWR(params, (key) => fetcher(key), {
		revalidateIfStale: false,
		revalidateOnFocus: false,
		revalidateOnReconnect: false,
		...options,
	});
	return { data, loading: !data && !error, error };
};


??

??