Skip to content

Instantly share code, notes, and snippets.

@RayLuxembourg
Created August 19, 2018 14:47
Show Gist options
  • Save RayLuxembourg/b227c3a85be88ee5173ae7eca871362a to your computer and use it in GitHub Desktop.
Save RayLuxembourg/b227c3a85be88ee5173ae7eca871362a to your computer and use it in GitHub Desktop.
product component
export class ProductComponent implements OnInit {
product$: Observable<Product>;
constructor(private api: ApiService,private route:ActivatedRoute) {}
ngOnInit() {
const id = this.route.snapshop.params['id'];
this.product$ = this.api.product(id);
// ...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment