diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-12-15 17:15:32 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-12-15 17:15:32 +0700 |
| commit | c9366090153e8aba3a673b2b77cbc8acc24e59a5 (patch) | |
| tree | 9bad672e511d5585bb4be5b4e3190aca7c4a16af /src-migrate/modules/product/PromoProduct.tsx | |
| parent | a5321d82f4b5e8404f575f1d62e92d0322d78db9 (diff) | |
Update promotion program feature
Diffstat (limited to 'src-migrate/modules/product/PromoProduct.tsx')
| -rw-r--r-- | src-migrate/modules/product/PromoProduct.tsx | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src-migrate/modules/product/PromoProduct.tsx b/src-migrate/modules/product/PromoProduct.tsx new file mode 100644 index 00000000..83b05e88 --- /dev/null +++ b/src-migrate/modules/product/PromoProduct.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import style from './PromoProduct.module.css' +import { IProductVariantPromo } from '~/common/types/promotion' +import Image from 'next/image' + +type Props = { + variant: IProductVariantPromo +} + +const PromoProduct = ({ variant }: Props) => { + return ( + <div className={style.product}> + <div className={style.image}> + <Image src={variant.image} alt={variant.display_name} width={320} height={320} /> + </div> + <div className={style.fillDesc}>Isi {variant.qty} barang</div> + <div className={style.name}>{variant.name}</div> + </div> + ) +} + +export default PromoProduct
\ No newline at end of file |
