Commit 20f884d8 authored by Rifka Kurnia Irfiana's avatar Rifka Kurnia Irfiana

add approval matrix route

parent eb765229
...@@ -102,8 +102,8 @@ const arraySide = [ ...@@ -102,8 +102,8 @@ const arraySide = [
}, },
{ {
img: '', img: '',
label: 'Approvalz Matrix', label: 'Approval Matrix',
path: 'beranda', path: 'approval',
subItem: null subItem: null
} }
] ]
......
import screen404 from '../container/Screen404' import screen404 from '../container/Screen404'
import Beranda from '../container/Beranda' import Beranda from '../container/Beranda'
import UserRole from '../container/UserRole' import UserRole from '../container/UserRole'
import ApprovalMatrix from '../container/ApprovalMatrix'
const routes = [ const routes = [
{ {
path: "/home/beranda", path: "/home/beranda",
main: HomePage main: Beranda
}, },
{ {
path: "/home/userrole", path: "/home/userrole",
main: UserRole main: UserRole
}, },
{
path: "/home/approval",
main: ApprovalMatrix
},
]; ];
......
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