import { AddressSummary } from '@components/common/customer/address/AddressSummary.js'; import { Button } from '@components/common/ui/Button.js'; import { _ } from '@evershop/evershop/lib/locale/translate/_'; import React from 'react'; interface CustomerInfoProps { order: { orderNumber: string; customerFullName: string; customerEmail: string; paymentMethodName: string; noShippingRequired: boolean; shippingAddress: { fullName: string; postcode: string; telephone: string; country: { name: string; code: string; }; province: { name: string; code: string; }; city: string; address1: string; address2: string; }; billingAddress: { fullName: string; postcode: string; telephone: string; country: { name: string; code: string; }; province: { name: string; code: string; }; city: string; address1: string; address2: string; }; }; } export default function CustomerInfo({ order: { orderNumber, customerFullName, customerEmail, paymentMethodName, noShippingRequired, shippingAddress, billingAddress } }: CustomerInfoProps) { return (