removed universal demo components

This commit is contained in:
Art Lowel
2016-12-01 10:48:10 +01:00
parent 7bd7f32362
commit 28e23f0cdd
33 changed files with 71 additions and 300 deletions

21
src/app/app.module.ts Executable file
View File

@@ -0,0 +1,21 @@
import { NgModule } from '@angular/core';
import { HomeModule } from './home/home.module';
import { SharedModule } from './shared/shared.module';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
@NgModule({
declarations: [ AppComponent ],
imports: [
SharedModule,
HomeModule,
AppRoutingModule
]
})
export class AppModule {
}
export { AppComponent } from './app.component';