Skip to content

Instantly share code, notes, and snippets.

@tkssharma
Created June 27, 2016 05:50
Show Gist options
  • Save tkssharma/4a47c43324036c3578753bf5e3aef88c to your computer and use it in GitHub Desktop.
Save tkssharma/4a47c43324036c3578753bf5e3aef88c to your computer and use it in GitHub Desktop.
@Component({
providers: [ProductService]
})
class ProductComponent {
product: Product;
constructor(private productService: ProductService) {
this.product = this.productService.getProduct();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment