UNPKG

@ansible/ansible-ui-framework

Version:

A framework for building applications using PatternFly.

9 lines (8 loc) 294 B
import { IPageNotification } from './PageNotification'; export interface IPageNotificationGroup { title: string; notifications: IPageNotification[]; } export declare function PageNotificationGroup(props: { group: IPageNotificationGroup; }): import("react/jsx-runtime").JSX.Element;