Person highscore overview page.

This commit is contained in:
2020-09-06 22:31:15 +02:00
parent 1aa266ad71
commit ace222749a
2 changed files with 238 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ import AdminPage from "@/components/AdminPage";
import WinnerPage from "@/components/WinnerPage";
import LotteryPage from "@/components/LotteryPage";
import HistoryPage from "@/components/HistoryPage";
import HighscorePage from "@/components/HighscorePage";
const routes = [
{
@@ -52,6 +53,10 @@ const routes = [
{
path: "/history",
component: HistoryPage
},
{
path: "/highscore",
component: HighscorePage
}
];