You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
357 B
TypeScript
13 lines
357 B
TypeScript
![]()
3 weeks ago
|
import { Component } from '@angular/core';
|
||
|
|
||
|
import { NzBreadCrumbModule } from 'ng-zorro-antd/breadcrumb';
|
||
|
import { NzPageHeaderModule } from 'ng-zorro-antd/page-header';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-price',
|
||
|
standalone: true,
|
||
|
imports: [NzBreadCrumbModule, NzPageHeaderModule],
|
||
|
templateUrl: './price.component.html'
|
||
|
})
|
||
|
export class PriceComponent {}
|