Skip to content

Instantly share code, notes, and snippets.

@alex-okrushko
Last active December 11, 2018 04:18
Show Gist options
  • Save alex-okrushko/ca13b4febafa11bc4efd93206b6c81f8 to your computer and use it in GitHub Desktop.
Save alex-okrushko/ca13b4febafa11bc4efd93206b6c81f8 to your computer and use it in GitHub Desktop.
@Component({...})
export class ProductDetailsComponent {
product$ = this.store.select(selectors.getCurrentProduct);
constructor(
private readonly store: Store<{}>,
) {
this.store.dispatch(new actions.FetchCurrentProduct());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment