This commit is contained in:
Belen Curcio
2021-01-07 11:19:28 -03:00
parent f7956f8d01
commit 812535caff
3 changed files with 27 additions and 17 deletions

View File

@@ -2,13 +2,13 @@ interface Product {
id: string | number
name: string
description: string
images: Images[]
images: Image[]
slug: string
price: string
variantId: string
}
interface Images {
interface Image {
src: string
alt?: string
}