diff --git a/src/app/app.module.ts b/src/app/app.module.ts index c67e870..464cba6 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -50,6 +50,7 @@ import { ChartAmountOfLoansComponent } from './chart-amount-of-loans/chart-amoun import { ChartPastYearMonthlyPerformanceComponent } from './chart-past-year-monthly-performance/chart-past-year-monthly-performance.component'; import { ChartRecentTenLoansComponent } from './chart-recent-ten-loans/chart-recent-ten-loans.component'; import { ChartTopBrokersComponent } from './chart-top-brokers/chart-top-brokers.component'; +import { ListAllLoansComponent } from './list-all-loans/list-all-loans.component'; @@ -72,7 +73,8 @@ import { ChartTopBrokersComponent } from './chart-top-brokers/chart-top-brokers. ChartAmountOfLoansComponent, ChartPastYearMonthlyPerformanceComponent, ChartRecentTenLoansComponent, - ChartTopBrokersComponent + ChartTopBrokersComponent, + ListAllLoansComponent ], imports: [ BrowserModule, diff --git a/src/app/list-all-loans/list-all-loans.component.html b/src/app/list-all-loans/list-all-loans.component.html new file mode 100644 index 0000000..2976bd7 --- /dev/null +++ b/src/app/list-all-loans/list-all-loans.component.html @@ -0,0 +1 @@ +
list-all-loans works!
diff --git a/src/app/list-all-loans/list-all-loans.component.scss b/src/app/list-all-loans/list-all-loans.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/list-all-loans/list-all-loans.component.spec.ts b/src/app/list-all-loans/list-all-loans.component.spec.ts new file mode 100644 index 0000000..0d208c1 --- /dev/null +++ b/src/app/list-all-loans/list-all-loans.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { ListAllLoansComponent } from './list-all-loans.component'; + +describe('ListAllLoansComponent', () => { + let component: ListAllLoansComponent; + let fixture: ComponentFixture