Displays a notification card if there are unfinished manga matching processes, allowing the user to resume or cancel.
Source
exportconstResumeNotification: React.FC<ResumeNotificationProps> = ({ pendingMangaCount, onResumeMatching, onCancelResume, }) => { // Don't render anything if there are no pending manga if (pendingMangaCount <= 0) { returnnull; }
Displays a notification card if there are unfinished manga matching processes, allowing the user to resume or cancel.
Source
Example