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