Skip to content

Instantly share code, notes, and snippets.

@xxiz
Created December 25, 2022 01:31
Show Gist options
  • Save xxiz/14460f5ac567a20dff270edd8386c4c3 to your computer and use it in GitHub Desktop.
Save xxiz/14460f5ac567a20dff270edd8386c4c3 to your computer and use it in GitHub Desktop.
fetcher class for useSWR
async function fetcher<JSON = any>(
input: RequestInfo,
init?: RequestInit
): Promise<JSON> {
const res = await fetch(input, init)
return res.json()
}
export default fetcher;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment