import React from 'react'; import * as Icon from 'react-feather'; //library yarn import NumberFormat from 'react-number-format'; const CheckoutContent = function ({ backend, checkout_product, ...props }) { // const Checkout = checkout_product.map((data) => { // return ( // ) // }) return ( <>
Returning customer? Click here to login

Billing Details

Your Order

{checkout_product.length ? checkout_product.map(data => ( )) : ( )}
Product Name Total
{data.product_name}
Tidak Ada Product di Keranjang
Cart Subtotal $210.00
Shipping $5.00
Order Total $215.00
{/*

Make your payment directly into our bank account. Please use your Order ID as the payment reference. Your order will not be shipped until the funds have cleared in our account.

*/} Lanjutkan Pembayaran
) } export default CheckoutContent;