mirror of https://github.com/ghostfolio/ghostfolio
Thomas Kaul
2 years ago
committed by
GitHub
4 changed files with 10 additions and 96 deletions
@ -1,21 +1,13 @@ |
|||||
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 { MatButtonModule } from '@angular/material/button'; |
import { MatButtonModule } from '@angular/material/button'; |
||||
import { MatCardModule } from '@angular/material/card'; |
|
||||
import { GfValueModule } from '@ghostfolio/ui/value'; |
|
||||
|
|
||||
import { AboutPageRoutingModule } from './about-page-routing.module'; |
import { AboutPageRoutingModule } from './about-page-routing.module'; |
||||
import { AboutPageComponent } from './about-page.component'; |
import { AboutPageComponent } from './about-page.component'; |
||||
|
|
||||
@NgModule({ |
@NgModule({ |
||||
declarations: [AboutPageComponent], |
declarations: [AboutPageComponent], |
||||
imports: [ |
imports: [AboutPageRoutingModule, CommonModule, MatButtonModule], |
||||
AboutPageRoutingModule, |
|
||||
CommonModule, |
|
||||
GfValueModule, |
|
||||
MatButtonModule, |
|
||||
MatCardModule |
|
||||
], |
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
||||
}) |
}) |
||||
export class AboutPageModule {} |
export class AboutPageModule {} |
||||
|
Loading…
Reference in new issue