This commit is contained in:
Kasper Rynning-Tønnesen
2020-03-16 13:48:57 +01:00
parent 569aa7ef9b
commit 08c5c40335
10 changed files with 187 additions and 75 deletions

View File

@@ -9,6 +9,7 @@ import CreatePage from "@/components/CreatePage";
import AdminPage from "@/components/AdminPage";
import VirtualLotteryPage from "@/components/VirtualLotteryPage";
import LotteryPage from "@/components/LotteryPage";
const routes = [
{
@@ -16,8 +17,8 @@ const routes = [
component: VinlottisPage
},
{
path: "/generate",
component: GeneratePage
path: "/lottery",
component: LotteryPage
},
{
path: "/dagens",
@@ -40,8 +41,8 @@ const routes = [
component: AdminPage
},
{
path: "/virtual",
component: VirtualLotteryPage
path: "/lottery/:tab",
component: LotteryPage
}
];