interface MobileProfilePageProps {
    labels: {
        basicInfo: string;
        compensation: string;
        skills: string;
    };
    onNavigate: ((url) => void);
    pageTitle: string;
    routes: {
        basicInfo: string;
        compensation: string;
        skills: string;
    };
    subtitle: string;
}

Properties

labels: {
    basicInfo: string;
    compensation: string;
    skills: string;
}

Labels for different sections of the page.

Type declaration

  • basicInfo: string
  • compensation: string
  • skills: string
onNavigate: ((url) => void)

Callback function to navigate to a specific URL.

Type declaration

    • (url): void
    • Callback function to navigate to a specific URL.

      Parameters

      • url: string

        The URL to navigate to.

      Returns void

Param: url

The URL to navigate to.

pageTitle: string

The title of the page.

routes: {
    basicInfo: string;
    compensation: string;
    skills: string;
}

Routes for different sections of the page.

Type declaration

  • basicInfo: string
  • compensation: string
  • skills: string
subtitle: string

The subtitle of the page.

Generated using TypeDoc