UNPKG

@knine-sdk/react

Version:

React helpers for Knine Finance projects. Part of Knine JS SDK

8 lines (5 loc) 302 B
import { useWrapperSWR } from './useWrapperSWR.js'; const useWrapperSWRImmutable = (key, fetcher, config) => { return useWrapperSWR(key, fetcher, Object.assign({ revalidateIfStale: false, revalidateOnFocus: false, revalidateOnReconnect: false }, config)); }; export { useWrapperSWRImmutable };