chore: initial commit from @angular/cli

This commit is contained in:
Angular CLI
2018-01-09 14:34:38 -05:00
commit 1ebf3cf36e
29 changed files with 699 additions and 0 deletions

16
src/app/app.module.ts Normal file
View File

@@ -0,0 +1,16 @@
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }