"use client"; import Link from "next/link"; interface ScoreSummaryProps { correctCount: number; totalCount: number; onRestart: () => void; } export default function ScoreSummary({ correctCount, totalCount, onRestart, }: ScoreSummaryProps) { return (

괄호 음수 분배

풀이 결과

{correctCount} / {totalCount} 정답

처음으로
); }