import * as React from 'react'; import { css } from '@patternfly/react-styles'; import styles from '@patternfly/react-styles/css/components/NotificationDrawer/notification-drawer'; export interface NotificationDrawerGroupListProps extends React.HTMLProps { /** Content rendered inside the notification drawer list body */ children?: React.ReactNode; /** Additional classes added to the notification drawer list body */ className?: string; } export const NotificationDrawerGroupList: React.FunctionComponent = ({ children, className = '', ...props }: NotificationDrawerGroupListProps) => (
{children}
); NotificationDrawerGroupList.displayName = 'NotificationDrawerGroupList';