import { useState } from 'react' import { CheckoutBill, Layout, } from 'src/components/common' import { CardItemCheckoutProps } from 'src/components/common/CardItemCheckout/CardItemCheckout' import TabPane from 'src/components/common/TabCommon/components/TabPane/TabPane' import TabCommon from 'src/components/common/TabCommon/TabCommon' import { CheckoutInfo } from 'src/components/modules/checkout' import image7 from '../public/assets/images/image7.png' import image8 from '../public/assets/images/image8.png' const dataTest:CardItemCheckoutProps[] = [ { name: 'Tomato', slug: "tomato", weight: '250g', category: 'VEGGIE', price: 'Rp 27.500', imageSrc: image7.src, quantity:10 }, { name: 'Carrot', slug: "carrot", weight: '250g', category: 'VEGGIE', price: 'Rp 27.500', imageSrc: image7.src, quantity:1 }, { name: 'Salad', slug:"salad", weight: '250g', category: 'VEGGIE', price: 'Rp 27.500', imageSrc: image8.src, quantity:2 }, ] export default function Test() { return ( <>