mirror of https://github.com/ghostfolio/ghostfolio
Thomas Kaul
2 years ago
committed by
GitHub
3 changed files with 8 additions and 8 deletions
@ -1,13 +1,19 @@ |
|||
import { CommonModule } from '@angular/common'; |
|||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|||
import { MatButtonModule } from '@angular/material/button'; |
|||
import { RouterModule } from '@angular/router'; |
|||
|
|||
import { AboutOverviewPageRoutingModule } from './about-overview-page-routing.module'; |
|||
import { AboutOverviewPageComponent } from './about-overview-page.component'; |
|||
|
|||
@NgModule({ |
|||
declarations: [AboutOverviewPageComponent], |
|||
imports: [AboutOverviewPageRoutingModule, CommonModule, MatButtonModule], |
|||
imports: [ |
|||
AboutOverviewPageRoutingModule, |
|||
CommonModule, |
|||
MatButtonModule, |
|||
RouterModule |
|||
], |
|||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|||
}) |
|||
export class AboutOverviewPageModule {} |
|||
|
Loading…
Reference in new issue