commerce/framework/local/fetcher.ts
2021-06-11 12:01:51 -03:00

12 lines
249 B
TypeScript

import { Fetcher } from '@commerce/utils/types'
export const fetcher: Fetcher = async () => {
console.log('FETCHER')
const res = await fetch('./data.json')
if (res.ok) {
const { data } = await res.json()
return data
}
throw res
}