mirror of
https://github.com/optim-enterprises-bv/OptimCloud-gw-ui.git
synced 2025-11-01 10:47:45 +00:00
23 lines
361 B
JavaScript
23 lines
361 B
JavaScript
const _nav = [
|
|
{
|
|
_tag: 'CSidebarNavItem',
|
|
name: 'List of Devices',
|
|
to: '/devices',
|
|
icon: 'cilNotes'
|
|
},
|
|
{
|
|
_tag: 'CSidebarNavItem',
|
|
name: 'Create Device',
|
|
to: '/Create',
|
|
icon: 'cilPencil',
|
|
},
|
|
{
|
|
_tag: 'CSidebarNavItem',
|
|
name: 'Settings',
|
|
to: '/Settings',
|
|
icon: 'cil-settings',
|
|
},
|
|
]
|
|
|
|
export default _nav
|