Commit 55e6fde1 by Arjun Jhukal

initialized the add game layout

parent 5ce47297
import PageHeader from '@/components/molecules/PageHeader'
import { PATH } from '@/routes/PATH'
import React from 'react' import React from 'react'
export default function AddGame() { export default function AddGame() {
return ( return (
<div>AddGame</div> <PageHeader title="Add Game" />
) )
} }
...@@ -18,12 +18,12 @@ export const PATH = { ...@@ -18,12 +18,12 @@ export const PATH = {
}, },
ADMIN: { ADMIN: {
GAMES: { GAMES: {
ROOT: "/admin/games", ROOT: "/games",
ADD_GAME: { ADD_GAME: {
ROOT: "/admin/games/add-game" ROOT: "/games/add-game"
}, },
EDIT_GAME: { EDIT_GAME: {
ROOT: "/admin/games/edit-game/:id" ROOT: "/games/edit-game/:id"
} }
} }
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment