@evlmaistrenko/tools-antd
    Preparing search index...

    Interface ApplicationHelloPageProps

    interface ApplicationHelloPageProps {
        centered?: boolean | "content-only";
        component?: ElementType;
        header?:
            | ReactNode
            | { breadcrumbs?: ReactNode; title: ReactNode }
            | { breadcrumbs: ReactNode; title?: ReactNode };
        onLocaleChange?: (locale: string) => void;
    }

    Hierarchy

    • Omit<PageProps, "children">
      • ApplicationHelloPageProps
    Index

    Properties

    centered?: boolean | "content-only"

    Whether to center content.

    component?: ElementType

    Custom root element.

    header?:
        | ReactNode
        | { breadcrumbs?: ReactNode; title: ReactNode }
        | { breadcrumbs: ReactNode; title?: ReactNode }

    Structured header or custom ReactNode.

    onLocaleChange?: (locale: string) => void