Skip to content

Instantly share code, notes, and snippets.

@NishuGoel
Created November 25, 2018 08:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NishuGoel/1d15cdc9ff540844216541d0b9cf399e to your computer and use it in GitHub Desktop.
Save NishuGoel/1d15cdc9ff540844216541d0b9cf399e to your computer and use it in GitHub Desktop.
@Component({
selector: 'app-root',
template: `<h2>Welcome</h2>
<p *ngIf="show">Show</p>
`
})
export class Component{
public show = true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment