Parcourir la source

added list-all-loans component as main comonent for loan editing.

tags/2.037
Patrick Sun il y a 4 ans
Parent
révision
3813d79c37
5 fichiers modifiés avec 44 ajouts et 1 suppressions
  1. +3
    -1
      src/app/app.module.ts
  2. +1
    -0
      src/app/list-all-loans/list-all-loans.component.html
  3. +0
    -0
      src/app/list-all-loans/list-all-loans.component.scss
  4. +25
    -0
      src/app/list-all-loans/list-all-loans.component.spec.ts
  5. +15
    -0
      src/app/list-all-loans/list-all-loans.component.ts

+ 3
- 1
src/app/app.module.ts Voir le fichier

import { ChartPastYearMonthlyPerformanceComponent } from './chart-past-year-monthly-performance/chart-past-year-monthly-performance.component'; 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 { ChartRecentTenLoansComponent } from './chart-recent-ten-loans/chart-recent-ten-loans.component';
import { ChartTopBrokersComponent } from './chart-top-brokers/chart-top-brokers.component'; import { ChartTopBrokersComponent } from './chart-top-brokers/chart-top-brokers.component';
import { ListAllLoansComponent } from './list-all-loans/list-all-loans.component';






ChartAmountOfLoansComponent, ChartAmountOfLoansComponent,
ChartPastYearMonthlyPerformanceComponent, ChartPastYearMonthlyPerformanceComponent,
ChartRecentTenLoansComponent, ChartRecentTenLoansComponent,
ChartTopBrokersComponent
ChartTopBrokersComponent,
ListAllLoansComponent
], ],
imports: [ imports: [
BrowserModule, BrowserModule,

+ 1
- 0
src/app/list-all-loans/list-all-loans.component.html Voir le fichier

<p>list-all-loans works!</p>

+ 0
- 0
src/app/list-all-loans/list-all-loans.component.scss Voir le fichier


+ 25
- 0
src/app/list-all-loans/list-all-loans.component.spec.ts Voir le fichier

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();
});
});

+ 15
- 0
src/app/list-all-loans/list-all-loans.component.ts Voir le fichier

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 {
}

}

Chargement…
Annuler
Enregistrer