30 lines
567 B
JavaScript
30 lines
567 B
JavaScript
const financeSidebarItems = [
|
|
{
|
|
key: 'overview',
|
|
label: 'Overview',
|
|
iconKey: 'finance',
|
|
path: '/dashboard/finance/overview'
|
|
},
|
|
{ type: 'divider' },
|
|
{
|
|
key: 'invoices',
|
|
label: 'Invoices',
|
|
iconKey: 'invoice',
|
|
path: '/dashboard/finance/invoices'
|
|
},
|
|
{
|
|
key: 'payments',
|
|
label: 'Payments',
|
|
iconKey: 'payment',
|
|
path: '/dashboard/finance/payments'
|
|
},
|
|
{
|
|
key: 'taxRecords',
|
|
iconKey: 'taxRecord',
|
|
label: 'Tax Records',
|
|
path: '/dashboard/finance/taxrecords'
|
|
}
|
|
]
|
|
|
|
export default financeSidebarItems
|