#1428 created customer history component and added to module

This commit is contained in:
Nino Righi
2021-02-11 17:29:48 +01:00
parent f333d00528
commit 8feac56493
4 changed files with 15 additions and 0 deletions

View File

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

View File

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