mirror of https://github.com/ghostfolio/ghostfolio
committed by
Thomas
5 changed files with 60 additions and 64 deletions
@ -1,15 +1,12 @@ |
|||
import { NgModule } from '@angular/core'; |
|||
import { CommonModule } from '@angular/common'; |
|||
import { NgModule } from '@angular/core'; |
|||
|
|||
import { ValueComponent } from './value/value.component'; |
|||
// import { GfValueModule } from './value/value.module';
|
|||
|
|||
@NgModule({ |
|||
imports: [CommonModule /*, GfValueModule*/], |
|||
declarations: [ |
|||
ValueComponent |
|||
], |
|||
exports: [ |
|||
ValueComponent |
|||
] |
|||
declarations: [ValueComponent], |
|||
exports: [ValueComponent] |
|||
}) |
|||
export class UiModule {} |
|||
|
Loading…
Reference in new issue