2016-09-06 13:35:20 +00:00
|
|
|
import { Component } from "@angular/core";
|
2016-09-06 12:07:33 +00:00
|
|
|
|
2016-09-06 11:44:13 +00:00
|
|
|
@Component({
|
2016-10-27 15:52:55 +00:00
|
|
|
moduleId: module.id,
|
|
|
|
selector: "duckbook-front-app",
|
|
|
|
templateUrl: "app.component.html"
|
2016-09-06 11:44:13 +00:00
|
|
|
})
|
2016-10-27 15:52:55 +00:00
|
|
|
export class AppComponent {
|
|
|
|
title = "Rubber Duck Booking Tool";
|
|
|
|
}
|