Much virtual many lotteries

This commit is contained in:
Kasper Rynning-Tønnesen
2020-03-13 16:37:08 +01:00
parent 6463a53dd7
commit b35dd5a971
14 changed files with 1552 additions and 264 deletions

View File

@@ -7,6 +7,9 @@ import LoginPage from "@/components/LoginPage";
import RegisterPage from "@/components/RegisterPage";
import CreatePage from "@/components/CreatePage";
import VirtualLotteryRegistrationPage from "@/components/VirtualLotteryRegistrationPage";
import VirtualLotteryPage from "@/components/VirtualLotteryPage";
const routes = [
{
path: "*",
@@ -35,6 +38,14 @@ const routes = [
{
path: "/create",
component: CreatePage
},
{
path: "/virtual-register",
component: VirtualLotteryRegistrationPage
},
{
path: "/virtual",
component: VirtualLotteryPage
}
];