Commit 5567c4230ce9de66c78a1437d5e5fc1fcce77637
1 parent
7ce3e14ac6
Exists in
master
and in
1 other branch
Borrado de importaciones.
Showing
1 changed file
with
0 additions
and
2 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'; | 6 | import { HeaderComponent } from './header/header.component'; |
8 | import { SidebarComponent } from './sidebar/sidebar.component'; | 7 | import { SidebarComponent } from './sidebar/sidebar.component'; |
9 | import { CarouselComponent } from './carousel/carousel.component'; | 8 | import { CarouselComponent } from './carousel/carousel.component'; |
10 | import { HomeComponent } from './home/home.component'; | 9 | import { HomeComponent } from './home/home.component'; |
11 | 10 | ||
12 | @NgModule({ | 11 | @NgModule({ |
13 | declarations: [ | 12 | declarations: [ |
14 | AppComponent, | 13 | AppComponent, |
15 | FooterComponent, | ||
16 | HeaderComponent, | 14 | HeaderComponent, |
17 | SidebarComponent, | 15 | SidebarComponent, |
18 | CarouselComponent, | 16 | CarouselComponent, |
19 | HomeComponent | 17 | HomeComponent |
20 | ], | 18 | ], |
21 | imports: [ | 19 | imports: [ |
22 | BrowserModule, | 20 | BrowserModule, |
23 | AppRoutingModule | 21 | AppRoutingModule |
24 | ], | 22 | ], |
25 | providers: [], | 23 | providers: [], |
26 | bootstrap: [AppComponent] | 24 | bootstrap: [AppComponent] |
27 | }) | 25 | }) |
28 | export class AppModule { } | 26 | export class AppModule { } |
29 | 27 |