Grid and Marquee Updated

This commit is contained in:
Belen Curcio
2020-10-16 12:46:02 -03:00
parent 77b011474d
commit 7d7d2deff6
4 changed files with 34 additions and 55 deletions

View File

@@ -1,12 +1,12 @@
import cn from 'classnames'
import s from './ProductCard.module.css'
import { FC } from 'react'
import { FC, ReactNode, Component } from 'react'
import { Heart } from '@components/icon'
import Link from 'next/link'
interface Props {
className?: string
children?: any
children?: ReactNode[] | Component[] | any[]
node: ProductData
variant?: 'slim'
}