5 lines
136 B
TypeScript
5 lines
136 B
TypeScript
export const fetcher = async (input: RequestInfo, init?: RequestInit) => {
|
|
const res = await fetch(input, init)
|
|
return res.json()
|
|
}
|