Skip to content

Instantly share code, notes, and snippets.

@jessesanders
Created February 7, 2019 23:59
Show Gist options
  • Save jessesanders/3ff79e3911f8d77cfc93eee06f0ffb72 to your computer and use it in GitHub Desktop.
Save jessesanders/3ff79e3911f8d77cfc93eee06f0ffb72 to your computer and use it in GitHub Desktop.
export class DashboardComponent implements OnInit {
users$: Observable<User[]>;
constructor(private userService: UserService) {}
ngOnInit() {
this.users$ = this.userService.users$;
this.userService.getAll();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment