Skip to content

Commit 69ccdc6

Browse files
Broccofilipesilva
authored andcommitted
chore(module): remove extra imports from app module
Close #1651
1 parent 9ff8c09 commit 69ccdc6

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
import { BrowserModule } from '@angular/platform-browser';
2-
import { NgModule, ApplicationRef } from '@angular/core';
3-
import { CommonModule } from '@angular/common';
4-
import { FormsModule } from '@angular/forms';
2+
import { NgModule } from '@angular/core';
3+
import { FormsModule } from '@angular/forms'
4+
import { HttpModule } from '@angular/http'
5+
56
import { AppComponent } from './app.component';
67

78
@NgModule({
@@ -10,13 +11,11 @@ import { AppComponent } from './app.component';
1011
],
1112
imports: [
1213
BrowserModule,
13-
CommonModule,
14-
FormsModule
14+
FormsModule,
15+
HttpModule
1516
],
1617
providers: [],
1718
entryComponents: [AppComponent],
1819
bootstrap: [AppComponent]
1920
})
20-
export class AppModule {
21-
22-
}
21+
export class AppModule { }

0 commit comments

Comments
 (0)