{
setShowDismissAllModal( false );
} }
/>
) }
{ ( isResolvingNotes || isBatchUpdating ) && (
) }
{ ! isResolvingNotes &&
! isBatchUpdating &&
renderNotes( {
hasNotes,
isBatchUpdating,
notes,
onDismiss,
onNoteActionClick: ( note, action ) => {
triggerNoteAction( note.id, action.id );
},
setShowDismissAllModal,
showHeader,
} ) }
>
);
};
export default InboxPanel;