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