47 lines
991 B
TypeScript
47 lines
991 B
TypeScript
import Accounts from './components/accounts_page.tsx'
|
|
import Invoices from './components/invoices_page.tsx'
|
|
import InvoicesBySupplier from './components/invoices_by_supplier_page.tsx'
|
|
import Objects from './components/objects_page.tsx'
|
|
import Results from './components/results_page.tsx'
|
|
import Start from './components/start_page.tsx'
|
|
|
|
export default [
|
|
{
|
|
path: '/',
|
|
name: 'start',
|
|
title: 'Start',
|
|
component: Start,
|
|
},
|
|
{
|
|
path: '/accounts',
|
|
name: 'accounts',
|
|
title: 'Accounts',
|
|
component: Accounts,
|
|
},
|
|
{
|
|
path: '/objects',
|
|
name: 'objects',
|
|
title: 'Objects',
|
|
component: Objects,
|
|
},
|
|
{
|
|
path: '/invoices',
|
|
name: 'invoices',
|
|
title: 'Invoices',
|
|
component: Invoices,
|
|
},
|
|
{
|
|
path: '/invoices/by-supplier/:supplier',
|
|
name: 'invoices',
|
|
title: 'Invoices',
|
|
nav: false,
|
|
component: InvoicesBySupplier,
|
|
},
|
|
{
|
|
path: '/results',
|
|
name: 'results',
|
|
title: 'Results',
|
|
component: Results,
|
|
},
|
|
]
|