Rearrange leaderboards, dashboard, etc files
This commit is contained in:
parent
8939c18335
commit
48b0e0c81f
17 changed files with 65 additions and 552 deletions
|
@ -1,10 +1,12 @@
|
|||
import { NgModule } from '@angular/core';
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { ChartsModule } from 'ng2-charts/ng2-charts';
|
||||
import { BsDropdownModule } from 'ngx-bootstrap/dropdown';
|
||||
|
||||
import { DashboardComponent } from './dashboard.component';
|
||||
import { DashboardRoutingModule } from './dashboard-routing.module';
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { LeaderboardsComponent } from './leaderboards.component';
|
||||
|
||||
import { DashboardRoutingModule } from './dashboard.routing';
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
|
@ -13,6 +15,9 @@ import { CommonModule } from '@angular/common';
|
|||
BsDropdownModule,
|
||||
CommonModule
|
||||
],
|
||||
declarations: [ DashboardComponent ]
|
||||
declarations: [
|
||||
DashboardComponent,
|
||||
LeaderboardsComponent,
|
||||
]
|
||||
})
|
||||
export class DashboardModule { }
|
||||
|
|
Reference in a new issue