Skip to content

Instantly share code, notes, and snippets.

@stevermeister
Created June 3, 2017 19:10
Show Gist options
  • Save stevermeister/c87db9bca26a8a5609e01658a7e9b9c3 to your computer and use it in GitHub Desktop.
Save stevermeister/c87db9bca26a8a5609e01658a7e9b9c3 to your computer and use it in GitHub Desktop.
@Component({
selector: 'test',
template: `<todos [todos]="todos$ | async"></todos>`
})
export class TestComponent {
constructor(private store: Store) { }
ngOnInit() {
this.todos$ = this.store.select('todos');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment