Skip to content

Instantly share code, notes, and snippets.

View hugo-dlb's full-sized avatar

Hugo Dalboussiere hugo-dlb

  • Atlassian
  • Paris, France
View GitHub Profile
@hugo-dlb
hugo-dlb / app.component.ts
Last active March 17, 2017 14:11 — forked from anonymous/app.component.ts
simple product listing from json data with Angular 2
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
template: `
<product-list></product-list>
`,
})
export class AppComponent { name = 'Angular'; }