Commit ec1220563d3f214ab842f952fc7c7fe7ed0aa93b
1 parent
de75c1d018
Exists in
master
and in
1 other branch
Agregados imports.
Showing
1 changed file
with
11 additions
and
1 deletions
Show diff stats
src/app/app.module.ts
| ... | ... | @@ -3,10 +3,20 @@ import { NgModule } from '@angular/core'; |
| 3 | 3 | |
| 4 | 4 | import { AppRoutingModule } from './app-routing.module'; |
| 5 | 5 | import { AppComponent } from './app.component'; |
| 6 | +import { FooterComponent } from './footer/footer.component'; | |
| 7 | +import { HeaderComponent } from './header/header.component'; | |
| 8 | +import { SidebarComponent } from './sidebar/sidebar.component'; | |
| 9 | +import { CarouselComponent } from './carousel/carousel.component'; | |
| 10 | +import { HomeComponent } from './home/home.component'; | |
| 6 | 11 | |
| 7 | 12 | @NgModule({ |
| 8 | 13 | declarations: [ |
| 9 | - AppComponent | |
| 14 | + AppComponent, | |
| 15 | + FooterComponent, | |
| 16 | + HeaderComponent, | |
| 17 | + SidebarComponent, | |
| 18 | + CarouselComponent, | |
| 19 | + HomeComponent | |
| 10 | 20 | ], |
| 11 | 21 | imports: [ |
| 12 | 22 | BrowserModule, |