import { useState } from 'react'; import { NotificationBadge, NotificationBadgeVariant } from '@patternfly/react-core'; export const NotificationBadgeBasic: React.FunctionComponent = () => { const [readExpanded, setReadExpanded] = useState(false); const [unreadExpanded, setUnreadExpanded] = useState(false); const [attentionExpanded, setAttentionExpanded] = useState(false); const onReadClick = () => { setReadExpanded(!readExpanded); }; const onUnreadClick = () => { setUnreadExpanded(!unreadExpanded); }; const onAttentionClick = () => { setAttentionExpanded(!attentionExpanded); }; return ( <> ); };