36 lines
689 B
JavaScript
36 lines
689 B
JavaScript
const productionSidebarItems = [
|
|
{
|
|
key: 'overview',
|
|
iconKey: 'production',
|
|
label: 'Overview',
|
|
path: '/dashboard/production/overview'
|
|
},
|
|
{ type: 'divider' },
|
|
{
|
|
key: 'printers',
|
|
iconKey: 'printer',
|
|
label: 'Printers',
|
|
path: '/dashboard/production/printers'
|
|
},
|
|
{
|
|
key: 'jobs',
|
|
iconKey: 'job',
|
|
label: 'Jobs',
|
|
path: '/dashboard/production/jobs'
|
|
},
|
|
{
|
|
key: 'subJobs',
|
|
iconKey: 'subJob',
|
|
label: 'Sub Jobs',
|
|
path: '/dashboard/production/subjobs'
|
|
},
|
|
{
|
|
key: 'gcodeFiles',
|
|
iconKey: 'gcodeFile',
|
|
label: 'GCode Files',
|
|
path: '/dashboard/production/gcodefiles'
|
|
}
|
|
]
|
|
|
|
export default productionSidebarItems
|