|
@ -1,5 +1,6 @@ |
|
|
import { CommonModule } from '@angular/common'; |
|
|
import { CommonModule } from '@angular/common'; |
|
|
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|
|
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|
|
|
|
|
import { RouterModule } from '@angular/router'; |
|
|
|
|
|
|
|
|
import { HelloGhostfolioPageRoutingModule } from './hello-ghostfolio-page-routing.module'; |
|
|
import { HelloGhostfolioPageRoutingModule } from './hello-ghostfolio-page-routing.module'; |
|
|
import { HelloGhostfolioPageComponent } from './hello-ghostfolio-page.component'; |
|
|
import { HelloGhostfolioPageComponent } from './hello-ghostfolio-page.component'; |
|
@ -7,7 +8,7 @@ import { HelloGhostfolioPageComponent } from './hello-ghostfolio-page.component' |
|
|
@NgModule({ |
|
|
@NgModule({ |
|
|
declarations: [HelloGhostfolioPageComponent], |
|
|
declarations: [HelloGhostfolioPageComponent], |
|
|
exports: [], |
|
|
exports: [], |
|
|
imports: [CommonModule, HelloGhostfolioPageRoutingModule], |
|
|
imports: [CommonModule, HelloGhostfolioPageRoutingModule, RouterModule], |
|
|
providers: [], |
|
|
providers: [], |
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
|
}) |
|
|
}) |
|
|