- Added edit spell component and started working on edit system

This commit is contained in:
Alexis
2020-06-08 23:16:27 +02:00
parent 1042b2df56
commit 6d67ebff95
6 changed files with 124 additions and 102 deletions

View File

@@ -2,9 +2,9 @@
// Pages
import index from "./pages/index-page";
import spells from "./pages/spells-page";
import world from "./pages/world-page";
import Index from "./pages/index-page";
import Spells from "./pages/spells-page";
import World from "./pages/world-page";
// Routes
const routes = [
@@ -12,13 +12,13 @@ const routes = [
path: "*", redirect: "/",
},
{
path: '/', component: index,
path: '/', component: Index,
},
{
path: '/spells', component: spells,
path: '/spells', component: Spells,
},
{
path: '/world', component: world,
path: '/world', component: World,
}
];