Files
openaccounting-web/src/app/reports/reports.ts

18 lines
370 B
TypeScript
Raw Normal View History

2018-10-19 11:28:08 -04:00
import { Component } from '@angular/core';
@Component({
selector: 'page-reports',
templateUrl: 'reports.html'
})
export class ReportsPage {
reports: Array<{title: string, url: string}>;
constructor() {
this.reports = [
{ title: 'Income Statement', url: '/reports/income' },
{ title: 'Balance Sheet', url: '/reports/balancesheet'}
];
}
}