Skip to content

Instantly share code, notes, and snippets.

@NetanelBasal
Created October 20, 2016 15:10
Show Gist options
  • Save NetanelBasal/79aea7ecb206b998690d242353a3b7c6 to your computer and use it in GitHub Desktop.
Save NetanelBasal/79aea7ecb206b998690d242353a3b7c6 to your computer and use it in GitHub Desktop.
tpl
<p *ngIf="condition">
Hello, world!
</p>
That turns into this:
<template [ngIf]="condition">
<p>
Hello, world!
</p>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment