aboutsummaryrefslogtreecommitdiff
path: root/src/app/app.module.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/app.module.ts')
-rw-r--r--src/app/app.module.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/app/app.module.ts b/src/app/app.module.ts
index cb9bb62..293f9af 100644
--- a/src/app/app.module.ts
+++ b/src/app/app.module.ts
@@ -6,12 +6,14 @@ import { AppComponent } from './app.component';
6import { HeroesComponent } from './heroes/heroes.component'; 6import { HeroesComponent } from './heroes/heroes.component';
7import { RestApisComponent } from './rest-apis/rest-apis.component'; 7import { RestApisComponent } from './rest-apis/rest-apis.component';
8import { AppRoutingModule } from './/app-routing.module'; 8import { AppRoutingModule } from './/app-routing.module';
9import { MainPageComponent } from './main-page/main-page.component';
9 10
10@NgModule({ 11@NgModule({
11 declarations: [ 12 declarations: [
12 AppComponent, 13 AppComponent,
13 HeroesComponent, 14 HeroesComponent,
14 RestApisComponent 15 RestApisComponent,
16 MainPageComponent
15 ], 17 ],
16 imports: [ 18 imports: [
17 BrowserModule, 19 BrowserModule,