interface OrganizationApplicationCompleteProps {
    buttonHref: string;
    buttonText: string;
    onNavigate: ((to) => void);
    screenMode: "desktop" | "mobile";
    subtitle: string;
    title: string;
}

Properties

buttonHref: string

URL for button

buttonText: string

Text to display in the action button

onNavigate: ((to) => void)

Navigation function

Type declaration

    • (to): void
    • Navigation function

      Parameters

      • to: string

      Returns void

screenMode: "desktop" | "mobile"

Screen mode

subtitle: string

Subtitle text

title: string

Title text

Generated using TypeDoc