Documentation
    Preparing search index...

    Type Alias ViewProps

    ViewProps: BaseComponentProps<HTMLDivElement> & Pick<
        Partial<InfoBlockProps>,
        "info",
    > & Partial<
        {
            asSubview: boolean;
            backLinkProps: LinkProps;
            bannerProps: BannerProps;
            buttonsProps: ButtonProps[];
            hasFooter: boolean;
            hasNavbar: boolean;
            hasSidebar: boolean;
            isAccessDenied: boolean;
            isLoading: boolean;
            loadingMessage: string;
            rightElement: React.ReactNode;
            tabsProps: TabsProps;
            title: string;
        },
    >