| @@ -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, | |||
| @@ -0,0 +1 @@ | |||
| <p>list-all-loans works!</p> | |||
| @@ -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<ListAllLoansComponent>; | |||
| beforeEach(async () => { | |||
| await TestBed.configureTestingModule({ | |||
| declarations: [ ListAllLoansComponent ] | |||
| }) | |||
| .compileComponents(); | |||
| }); | |||
| beforeEach(() => { | |||
| fixture = TestBed.createComponent(ListAllLoansComponent); | |||
| component = fixture.componentInstance; | |||
| fixture.detectChanges(); | |||
| }); | |||
| it('should create', () => { | |||
| expect(component).toBeTruthy(); | |||
| }); | |||
| }); | |||
| @@ -0,0 +1,15 @@ | |||
| import { Component, OnInit } from '@angular/core'; | |||
| @Component({ | |||
| selector: 'app-list-all-loans', | |||
| templateUrl: './list-all-loans.component.html', | |||
| styleUrls: ['./list-all-loans.component.scss'] | |||
| }) | |||
| export class ListAllLoansComponent implements OnInit { | |||
| constructor() { } | |||
| ngOnInit(): void { | |||
| } | |||
| } | |||