interface OrderShowPageProps {
    data: OrderShowItem;
    labels: {
        customerAddress: string;
        customerCompensationAmount: string;
        customerCompensationType: string;
        customerContact: string;
        customerExperience: string;
        customerName: string;
        notSetLabel: string;
        productName: string;
    };
    onNavigate: ((href) => void);
    productShowPageRef: string;
    showPageProps: Omit<ShowPageProps, "children">;
}

Properties

The data for page

labels: {
    customerAddress: string;
    customerCompensationAmount: string;
    customerCompensationType: string;
    customerContact: string;
    customerExperience: string;
    customerName: string;
    notSetLabel: string;
    productName: string;
}

Labels for each detail

Type declaration

  • customerAddress: string
  • customerCompensationAmount: string
  • customerCompensationType: string
  • customerContact: string
  • customerExperience: string
  • customerName: string
  • notSetLabel: string
  • productName: string
onNavigate: ((href) => void)

callback function to navigate

Type declaration

    • (href): void
    • callback function to navigate

      Parameters

      • href: string

      Returns void

productShowPageRef: string

Product show page ref

showPageProps: Omit<ShowPageProps, "children">

Props for the ShowPage

Generated using TypeDoc