interface HowToUseProps {
    buttonHref: string;
    buttonText?: string;
    onNavigate?: ((url) => void);
    screenMode: "desktop" | "mobile";
    stepItems: HowToUseStepItem[];
    subtitle: string;
    tertiaryText?: string;
    title: string;
}

Properties

buttonHref: string

URL for the call to action button

buttonText?: string

Text for the call to action button

onNavigate?: ((url) => void)

Function to call when the user clicks the call to action button

Type declaration

    • (url): void
    • Function to call when the user clicks the call to action button

      Parameters

      • url: string

      Returns void

screenMode: "desktop" | "mobile"

What size the screen currently is (affects page layout)

stepItems: HowToUseStepItem[]

Each step item to display in the guide

subtitle: string

Subtitle text

tertiaryText?: string

Optional extra text to show below everything else

title: string

Biggest text on the page

Generated using TypeDoc