@ansible/ansible-ui-framework
Version:
A framework for building applications using PatternFly.
24 lines (23 loc) • 696 B
TypeScript
import { ReactNode } from 'react';
import './PageFramework.css';
export interface ICatalogBreadcrumb {
id?: string;
label?: string | null;
to?: string;
target?: string;
component?: React.ElementType;
isLoading?: boolean;
}
export interface PageHeaderProps {
navigation?: ReactNode;
breadcrumbs?: ICatalogBreadcrumb[];
title?: string | null;
titleHelpTitle?: string;
titleHelp?: string | string[];
titleDocLink?: string;
description?: null | string | string[];
controls?: ReactNode;
headerActions?: ReactNode;
footer?: ReactNode;
}
export declare function PageHeader(props: PageHeaderProps): import("react/jsx-runtime").JSX.Element;