interface ProductShowPage {
    data: ProductItem;
    labels: {
        basicInfoSection: string;
        category: string;
        compensationAmount: string;
        compensationType: string;
        conditionsSection: string;
        contractMonths: string;
        description: string;
        imageLabel: string;
        linkToDemandSite: string;
        notSetLabel: string;
        positionRequirements: string;
        publicationDateLabel: string;
        skillRequirementsLabel: string;
        workCompensation: string;
        workLocation: string;
        workingHoursLabel: string;
    };
    onNavigate: ((href) => void);
    showPageProps: Omit<ShowPageProps, "children">;
    showProductLink?: boolean;
}

Properties

The data for page

labels: {
    basicInfoSection: string;
    category: string;
    compensationAmount: string;
    compensationType: string;
    conditionsSection: string;
    contractMonths: string;
    description: string;
    imageLabel: string;
    linkToDemandSite: string;
    notSetLabel: string;
    positionRequirements: string;
    publicationDateLabel: string;
    skillRequirementsLabel: string;
    workCompensation: string;
    workLocation: string;
    workingHoursLabel: string;
}

Labels for each detail

Type declaration

  • basicInfoSection: string
  • category: string
  • compensationAmount: string
  • compensationType: string
  • conditionsSection: string
  • contractMonths: string
  • description: string
  • imageLabel: string
  • linkToDemandSite: string
  • notSetLabel: string
  • positionRequirements: string
  • publicationDateLabel: string
  • skillRequirementsLabel: string
  • workCompensation: string
  • workLocation: string
  • workingHoursLabel: string
onNavigate: ((href) => void)

callback function to navigate

Type declaration

    • (href): void
    • callback function to navigate

      Parameters

      • href: string

      Returns void

showPageProps: Omit<ShowPageProps, "children">

Props for the ShowPage

showProductLink?: boolean

Use to show demand product link

Generated using TypeDoc