Commit ec1220563d3f214ab842f952fc7c7fe7ed0aa93b

Authored by Marcelo Puebla
1 parent de75c1d018
Exists in master

Agregados imports.

Showing 1 changed file with 11 additions and 1 deletions   Show diff stats
src/app/app.module.ts
1 import { BrowserModule } from '@angular/platform-browser'; 1 import { BrowserModule } from '@angular/platform-browser';
2 import { NgModule } from '@angular/core'; 2 import { NgModule } from '@angular/core';
3 3
4 import { AppRoutingModule } from './app-routing.module'; 4 import { AppRoutingModule } from './app-routing.module';
5 import { AppComponent } from './app.component'; 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 @NgModule({ 12 @NgModule({
8 declarations: [ 13 declarations: [
9 AppComponent 14 AppComponent,
15 FooterComponent,
16 HeaderComponent,
17 SidebarComponent,
18 CarouselComponent,
19 HomeComponent
10 ], 20 ],
11 imports: [ 21 imports: [
12 BrowserModule, 22 BrowserModule,
13 AppRoutingModule 23 AppRoutingModule
14 ], 24 ],
15 providers: [], 25 providers: [],
16 bootstrap: [AppComponent] 26 bootstrap: [AppComponent]
17 }) 27 })
18 export class AppModule { } 28 export class AppModule { }
19 29