• Container component displaying resume notification for unfinished matching sessions. Features animated entrance and allows users to resume or cancel.

    Parameters

    Returns Element

    Rendered matching resume notification with action buttons.

    export function MatchingResume({
    pendingMangaCount,
    onResumeMatching,
    onCancelResume,
    }: Readonly<MatchingResumeProps>) {
    return (
    <motion.div
    initial={{ opacity: 0, y: 20 }}
    animate={{ opacity: 1, y: 0 }}
    transition={{ delay: 0.4, duration: 0.3 }}
    >
    <ResumeNotification
    pendingMangaCount={pendingMangaCount}
    onResumeMatching={onResumeMatching}
    onCancelResume={onCancelResume}
    />
    </motion.div>
    );
    }