This commit removes all the docregion tags in examples that are not being referenced in any doc. PR Close #40479
27 lines
451 B
HTML
27 lines
451 B
HTML
<h2>Products</h2>
|
|
|
|
<div *ngFor="let product of products">
|
|
|
|
<h3>
|
|
<a [title]="product.name + ' details'">
|
|
{{ product.name }}
|
|
</a>
|
|
</h3>
|
|
|
|
<p *ngIf="product.description">
|
|
Description: {{ product.description }}
|
|
</p>
|
|
|
|
<!-- #docregion app-product-alerts -->
|
|
<button (click)="share()">
|
|
Share
|
|
</button>
|
|
|
|
<app-product-alerts
|
|
[product]="product">
|
|
</app-product-alerts>
|
|
<!-- #enddocregion app-product-alerts -->
|
|
|
|
</div>
|
|
|