Hook changes

This commit is contained in:
Luis Alvarez
2020-10-04 13:12:41 -05:00
parent b8d50ea528
commit 0ad9ac0d5d
6 changed files with 61 additions and 15 deletions

View File

@@ -0,0 +1,19 @@
import { Fetcher } from '@lib/commerce'
import { default as useCartAddItem } from '@lib/commerce/cart/use-add-item'
import { Cart } from '.'
async function fetcher(fetch: Fetcher<Cart>, { item }: { item: any }) {
const res = await fetch({ url: '/api/cart' })
// {
// method: 'POST',
// headers: {
// 'Content-Type': 'application/json',
// },
// body: JSON.stringify({ product }),
// }
}
export default function useAddItem() {
return useCartAddItem<Cart, { item: any }>(fetcher)
}