Files
openaccounting-web/src/app/reports/reports.ts
Patrick Nagurny 5ff09d328d initial commit
2018-10-19 11:28:08 -04:00

18 lines
370 B
TypeScript

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'}
];
}
}