Fixed links to Add Transaction and Edit Account
This commit is contained in:
parent
e1d44c52ae
commit
cec88d1cb5
3 changed files with 22 additions and 3 deletions
|
@ -1,10 +1,13 @@
|
|||
import { NgModule } from '@angular/core';
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
||||
import { ChartsModule } from 'ng2-charts/ng2-charts';
|
||||
import { BsDropdownModule } from 'ngx-bootstrap/dropdown';
|
||||
|
||||
import { DashboardComponent } from './dashboard.component';
|
||||
import { LeaderboardsComponent } from './leaderboards.component';
|
||||
import { AccountEditComponent } from './account-edit.component';
|
||||
import { AddDataComponent } from './add-data.component';
|
||||
|
||||
import { DashboardRoutingModule } from './dashboard.routing';
|
||||
|
||||
|
@ -13,11 +16,15 @@ import { DashboardRoutingModule } from './dashboard.routing';
|
|||
DashboardRoutingModule,
|
||||
ChartsModule,
|
||||
BsDropdownModule,
|
||||
CommonModule
|
||||
CommonModule,
|
||||
FormsModule,
|
||||
ReactiveFormsModule,
|
||||
],
|
||||
declarations: [
|
||||
DashboardComponent,
|
||||
LeaderboardsComponent,
|
||||
AccountEditComponent,
|
||||
AddDataComponent,
|
||||
]
|
||||
})
|
||||
export class DashboardModule { }
|
||||
|
|
Reference in a new issue