20 lines
407 B
JavaScript
20 lines
407 B
JavaScript
// #docplaster
|
|
// #docregion
|
|
(function(app) {
|
|
app.AppModule =
|
|
ng.core.NgModule({
|
|
imports: [
|
|
ng.platformBrowser.BrowserModule,
|
|
ng.forms.FormsModule
|
|
],
|
|
declarations: [
|
|
app.AppComponent,
|
|
app.HeroFormComponent
|
|
],
|
|
bootstrap: [ app.AppComponent ]
|
|
})
|
|
.Class({
|
|
constructor: function() {}
|
|
});
|
|
})(window.app || (window.app = {}));
|