add product details & modify product service

This commit is contained in:
Raghu-Ch
2018-09-12 16:23:08 -04:00
parent 56bef2153c
commit 0e203675c5
9 changed files with 75 additions and 15 deletions

View File

@@ -0,0 +1,15 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-product-detail',
templateUrl: './product-detail.component.html',
styleUrls: ['./product-detail.component.css']
})
export class ProductDetailComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}