diff --git a/app/app.component.ts b/app/app.component.ts new file mode 100644 index 00000000..84645eaa --- /dev/null +++ b/app/app.component.ts @@ -0,0 +1,7 @@ +import { Component } from '@angular/core'; + +@Component({ + selector: 'app', + template: '

My App

' +}) +export class AppComponent {} diff --git a/app/app.module.ts b/app/app.module.ts index e69de29b..ee387330 100644 --- a/app/app.module.ts +++ b/app/app.module.ts @@ -0,0 +1,16 @@ +import { NgModule } from '@angular/core'; +import { BrowserModule } from '@angular/platform-browser'; +import { AppComponent } from './app.component'; + +@NgModule({ + imports: [ + BrowserModule + ], + declarations: [ + AppComponent + ], + bootstrap: [ + AppComponent + ] +}) +export class AppModule {}