diff options
Diffstat (limited to 'frontend')
| -rw-r--r-- | frontend/src/pages/Chart.tsx | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/frontend/src/pages/Chart.tsx b/frontend/src/pages/Chart.tsx index ed3f648..346efd0 100644 --- a/frontend/src/pages/Chart.tsx +++ b/frontend/src/pages/Chart.tsx @@ -10,6 +10,7 @@ import MusicDiverDisplay from "../components/displays/MusicDiverScoreDisplay"; import SongInfoDisplay from "../components/modals/SongInfoDisplay"; import DancearoundScoreDisplay from "../components/displays/DancearoundScoreDisplay"; import NostalgiaScoreDisplay from "../components/displays/NostalgiaScoreDisplay"; +import ReflecBeatScoreDisplay from "../components/displays/ReflecBeatScoreDisplay"; type SortField = string; type SortDirection = "asc" | "desc"; @@ -252,6 +253,18 @@ const Chart = () => { hideTitleArtist={true} /> ); + case "reflecbeat": + return ( + <ReflecBeatScoreDisplay + scores={scores} + viewMode={viewMode} + sortField={sortField} + sortDirection={sortDirection} + onSort={handleSort} + showUsername={true} + hideTitleArtist={true} + /> + ); default: return ( <ScoreDisplay |
