Created
April 1, 2020 17:50
-
-
Save kevinchisholm/ebafe022c93d280aad165f3677aee76e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p *ngIf="formEntry.name">The name is {{formEntry.name}} </p> | |
<p *ngIf="formEntry.address">The address is {{formEntry.address}} </p> | |
<ng-template [ngIf] = "formEntry.phone"> | |
<p>The phone number is</p> | |
<p> {{formEntry.phone}} </p> | |
</ng-template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment