Skip to content

Instantly share code, notes, and snippets.

View matedemorphy's full-sized avatar

matedemorphy

View GitHub Profile
import { Component, OnInit } from '@angular/core';
import { Product } from '../shared/models/character';
import { ProductService } from './character.service';
@Component({
selector: 'product-list',
templateUrl: './app/products/product-list.component.html',
providers: [ProductService]
})