export default async function fetcher( input: RequestInfo, init?: RequestInit ): Promise { const res = await fetch(input, init) return res.json() }