Skip to content

Instantly share code, notes, and snippets.

@wKoza
Created January 15, 2017 11:23
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 wKoza/4725f55069c503386c3a1573f6aad49e to your computer and use it in GitHub Desktop.
Save wKoza/4725f55069c503386c3a1573f6aad49e to your computer and use it in GitHub Desktop.
import {Component} from '@angular/core';
@Component({
selector: 'pipe',
template: `
<h1>Les pipes</h1>
<hr />
<p>{{maDate}}</p>
<p>{{maDate | date}}</p>
`
})
export class PipeComponent {
maDate:Date=new Date('2016-09-25');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment