diff --git a/app/(app)/flashCard/cardResult.tsx b/app/(app)/flashCard/cardResult.tsx index 57330d0..87e58e3 100644 --- a/app/(app)/flashCard/cardResult.tsx +++ b/app/(app)/flashCard/cardResult.tsx @@ -12,6 +12,43 @@ export default function CardResult({ }) { return (
+
+
+

チェック率

+

+ 英語→日本語: + {Math.round( + ((results.check["en-ja"]?.length || 0) / + fileContent.content.length) * + 100 + )} + % +

+

+ 日本語→英語: + {Math.round( + ((results.check["ja-en"]?.length || 0) / + fileContent.content.length) * + 100 + )} + % +

+
+
+ @@ -65,20 +102,6 @@ export default function CardResult({ })}
結果
-
); }