Guest User

Untitled

a guest
Apr 20th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. @Component({
  2. template: `<p>{{data$ | async}}</p>`
  3. })
  4. export class SomeComponent {
  5.  
  6. data$ = this.dataService.getData();
  7.  
  8. constructor(protected dataService: DataService) {}
  9.  
  10. }
Add Comment
Please, Sign In to add comment