From 8bbac6ec1236f104d3265eefa275b24e2c218e69 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Fri, 7 Nov 2025 21:14:27 -0800 Subject: taiko: implement taiko arcade score view --- frontend/src/pages/Score.tsx | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'frontend/src/pages/Score.tsx') diff --git a/frontend/src/pages/Score.tsx b/frontend/src/pages/Score.tsx index fb6db90..8787137 100644 --- a/frontend/src/pages/Score.tsx +++ b/frontend/src/pages/Score.tsx @@ -12,6 +12,7 @@ import DivaScoreDisplay from "../components/displays/DivaScoreDisplay"; import MusicDiverDisplay from "../components/displays/MusicDiverScoreDisplay"; import ReflecBeatScoreDisplay from "../components/displays/ReflecBeatScoreDisplay"; import NostalgiaScoreDisplay from "../components/displays/NostalgiaScoreDisplay"; +import TaikoScoreDisplay from "../components/displays/TaikoScoreDisplay"; type SortField = string; type SortDirection = "asc" | "desc"; @@ -292,6 +293,17 @@ const Score = () => { onDelete={handleDeleteScore} /> ); + case "taiko": + return ( + + ); default: return (