mirror of https://github.com/ghostfolio/ghostfolio
1 changed files with 15 additions and 2 deletions
@ -1,9 +1,22 @@ |
|||
import { NgModule } from '@angular/core'; |
|||
import { ReactiveFormsModule } from '@angular/forms'; |
|||
import { FormsModule, ReactiveFormsModule } from '@angular/forms'; |
|||
import { CreateOrUpdatePlatformDialog } from './create-or-update-account-platform.component'; |
|||
import { CommonModule } from '@angular/common'; |
|||
import { MatButtonModule } from '@angular/material/button'; |
|||
import { MatDialogModule } from '@angular/material/dialog'; |
|||
import { MatFormFieldModule } from '@angular/material/form-field'; |
|||
import { MatInputModule } from '@angular/material/input'; |
|||
|
|||
@NgModule({ |
|||
declarations: [CreateOrUpdatePlatformDialog], |
|||
imports: [ReactiveFormsModule] |
|||
imports: [ |
|||
CommonModule, |
|||
FormsModule, |
|||
MatButtonModule, |
|||
MatDialogModule, |
|||
MatFormFieldModule, |
|||
MatInputModule, |
|||
ReactiveFormsModule |
|||
] |
|||
}) |
|||
export class GfCreateOrUpdatePlatformDialogModule {} |
|||
|
Loading…
Reference in new issue