You've already forked openaccounting-web
forked from cybercinch/openaccounting-web
initial commit
This commit is contained in:
18
src/app/reports/reports.ts
Normal file
18
src/app/reports/reports.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
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'}
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user