mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-31 09:37:15 +01:00
#1428 created customer history component and added to module
This commit is contained in:
@@ -26,6 +26,7 @@ import { CustomerCardComponent } from './customer-card/customer-card.component';
|
||||
import { CardTemplateComponent } from './shared/card-template/card-template.component';
|
||||
import { CustomerOrdersComponent } from './customer-orders/customer-orders.component';
|
||||
import { UiCommonModule } from '@ui/common';
|
||||
import { CustomerHistoryComponent } from './customer-history/customer-history.component';
|
||||
@NgModule({
|
||||
imports: [
|
||||
CommonModule,
|
||||
@@ -58,6 +59,7 @@ import { UiCommonModule } from '@ui/common';
|
||||
CustomerCardComponent,
|
||||
CardTemplateComponent,
|
||||
CustomerOrdersComponent,
|
||||
CustomerHistoryComponent,
|
||||
],
|
||||
})
|
||||
export class CustomerDetailsModule {}
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'page-customer-history',
|
||||
templateUrl: 'customer-history.component.html',
|
||||
styleUrls: ['customer-history.component.scss'],
|
||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||
})
|
||||
export class CustomerHistoryComponent implements OnInit {
|
||||
constructor() {}
|
||||
|
||||
ngOnInit(): void {}
|
||||
}
|
||||
Reference in New Issue
Block a user