10 lines
195 B
TypeScript
10 lines
195 B
TypeScript
"use client";
|
|
|
|
export default async function fetcher<JSON = unknown>(
|
|
input: RequestInfo,
|
|
init?: RequestInit
|
|
): Promise<JSON> {
|
|
const res = await fetch(input, init);
|
|
return res.json();
|
|
}
|