2016-09-06 11:44:13 +00:00
|
|
|
import { Component } from "@angular/core";
|
|
|
|
|
2016-09-06 11:53:32 +00:00
|
|
|
import { Duck } from "./models";
|
|
|
|
|
2016-09-06 11:44:13 +00:00
|
|
|
@Component({
|
|
|
|
selector: "duckbook-front",
|
|
|
|
templateUrl: "/app/app.component.html"
|
|
|
|
})
|
2016-09-06 11:53:32 +00:00
|
|
|
export class AppComponent {
|
|
|
|
duck: Duck = {
|
|
|
|
id: 1,
|
|
|
|
color: 'yellow'
|
|
|
|
};
|
|
|
|
}
|