changed routes

This commit is contained in:
Jayasanka 2019-04-28 18:32:57 +05:30
parent 9a580e513f
commit 1c86d57da3

View File

@ -19,19 +19,19 @@ const routes = [
component: Login
},
{
path: '/publisher/dashboard',
path: '/publisher/apps',
exact: false,
component: Dashboard,
routes: [
{
path: '/publisher/dashboard/apps',
path: '/publisher/apps',
component: Apps,
exact: false
exact: true
},
{
path: '/publisher/dashboard/new-app',
path: '/publisher/apps/new-app',
component: AddNewApp,
exact: false
exact: true
}
]
}